From 8ec5431354bdb582455e8c32758098c5a0fdada2 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 26 Jul 2019 23:17:36 +0200 Subject: exam final --- exam_final/rendu/ord_alphlong/include.h | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 exam_final/rendu/ord_alphlong/include.h (limited to 'exam_final/rendu/ord_alphlong/include.h') 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 +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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 -- cgit