aboutsummaryrefslogtreecommitdiff
path: root/tst/strlen.c
diff options
context:
space:
mode:
authorbeber <beber>2005-12-07 14:48:53 +0000
committerbeber <beber>2005-12-07 14:48:53 +0000
commit2035bb64f7775c24f865bf29be1f458e8dfae932 (patch)
treeb79d426dcff309bee32f568dd23ff3ce8a77e7e0 /tst/strlen.c
parentdon't use valgrind (diff)
downloadespik-2035bb64f7775c24f865bf29be1f458e8dfae932.tar.xz
use espik_debug_print everywhere
more ignore corect debug macro when there is no arguments some indent some // -> /* */ add a macro for fd output (stderr, stdout) include debug and so ..
Diffstat (limited to 'tst/strlen.c')
-rw-r--r--tst/strlen.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tst/strlen.c b/tst/strlen.c
new file mode 100644
index 0000000..7762570
--- /dev/null
+++ b/tst/strlen.c
@@ -0,0 +1,9 @@
+#include <string.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+int main()
+{
+ printf ("%d\n", strlen (""));
+ return 0;
+}