aboutsummaryrefslogtreecommitdiff
path: root/exam_final/rendu/ord_alphlong/include.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-07-26 23:17:36 +0200
committerCharles <sircharlesaze@gmail.com>2019-07-26 23:17:36 +0200
commit8ec5431354bdb582455e8c32758098c5a0fdada2 (patch)
tree480c68814f822439850029df0e0249a2cafb8177 /exam_final/rendu/ord_alphlong/include.h
parent475449dd4b1f3308bac6f72c34d87812216a0738 (diff)
downloadpiscine-8ec5431354bdb582455e8c32758098c5a0fdada2.tar.gz
piscine-8ec5431354bdb582455e8c32758098c5a0fdada2.tar.bz2
piscine-8ec5431354bdb582455e8c32758098c5a0fdada2.zip
exam final
Diffstat (limited to 'exam_final/rendu/ord_alphlong/include.h')
-rwxr-xr-xexam_final/rendu/ord_alphlong/include.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/exam_final/rendu/ord_alphlong/include.h b/exam_final/rendu/ord_alphlong/include.h
new file mode 100755
index 0000000..ac171fa
--- /dev/null
+++ b/exam_final/rendu/ord_alphlong/include.h
@@ -0,0 +1,42 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* include.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: exam <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2019/07/26 14:44:30 by exam #+# #+# */
+/* Updated: 2019/07/26 16:34:49 by exam ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef INCLUDE_H
+# define INCLUDE_H
+
+/*
+** helper.c
+*/
+
+int ft_strlen(char *str);
+int letter_diff(char a, char b);
+int str_lettercmp(char *s1, char *s2);
+void ft_putstr(char *str);
+
+/*
+** helper2.c
+*/
+
+int sorted(char **strs, int cmp(char*, char*));
+void sort_strs(char **strs, int cmp(char*, char*));
+int strlen_cmp(char *s1, char *s2);
+void print_strs(char **strs);
+
+/*
+** helper3.c
+*/
+
+int in_charset(char c);
+int count_segment(char *str);
+char **ft_split(char *str);
+
+#endif