aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/main.c b/main.c
new file mode 100644
index 0000000..b1c30b7
--- /dev/null
+++ b/main.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+int ft_strlen(char *);
+
+
+int main()
+{
+
+ /* extern ft_strlen("bonjour"); */
+ printf("%d\n", ft_strlen("bonjour"));
+ return 0;
+}