aboutsummaryrefslogtreecommitdiff
path: root/tst/strlen.c
diff options
context:
space:
mode:
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;
+}