aboutsummaryrefslogtreecommitdiff
path: root/c08/ex00/ft.h
diff options
context:
space:
mode:
Diffstat (limited to 'c08/ex00/ft.h')
-rw-r--r--c08/ex00/ft.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/c08/ex00/ft.h b/c08/ex00/ft.h
new file mode 100644
index 0000000..5dbbb51
--- /dev/null
+++ b/c08/ex00/ft.h
@@ -0,0 +1,22 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2019/07/07 16:33:44 by cacharle #+# #+# */
+/* Updated: 2019/07/07 16:34:58 by cacharle ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef FT_H
+#define FT_H
+
+void ft_putchar(char c);
+void ft_swap(int *a, int *b);
+void ft_putstr(char *str);
+int ft_strlen(char *str);
+int ft_strcmp(char *s1, char *s2);
+
+#endif