diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-07-15 10:20:37 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-07-15 10:20:37 +0200 |
| commit | 217bcb0d4e3ba60604921cb40d5a11a64f93cfc7 (patch) | |
| tree | 32a8f1f84e0b5f3617988932ccc068d471207208 /c09/ex01/includes/ft.h | |
| parent | 3b9a1d7dcc5683b962f2bf24795e80e1c449cd1f (diff) | |
| download | piscine-217bcb0d4e3ba60604921cb40d5a11a64f93cfc7.tar.gz piscine-217bcb0d4e3ba60604921cb40d5a11a64f93cfc7.tar.bz2 piscine-217bcb0d4e3ba60604921cb40d5a11a64f93cfc7.zip | |
c08 strdup malloc + 1 for \0, c09 begin
Diffstat (limited to 'c09/ex01/includes/ft.h')
| -rw-r--r-- | c09/ex01/includes/ft.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/c09/ex01/includes/ft.h b/c09/ex01/includes/ft.h new file mode 100644 index 0000000..e044fdd --- /dev/null +++ b/c09/ex01/includes/ft.h @@ -0,0 +1,22 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/15 08:52:33 by cacharle #+# #+# */ +/* Updated: 2019/07/15 09:12:41 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 |
