diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-28 18:57:09 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-28 18:57:09 +0200 |
commit | 2d75e800a1cd3dff630ec0080a864ef1779496c9 (patch) | |
tree | fa1ffe1d148a0cb731d8622c635963dd450fd084 /libft/include/libft.h | |
parent | TODO.org update (diff) | |
download | 42-minishell-2d75e800a1cd3dff630ec0080a864ef1779496c9.tar.gz 42-minishell-2d75e800a1cd3dff630ec0080a864ef1779496c9.tar.bz2 42-minishell-2d75e800a1cd3dff630ec0080a864ef1779496c9.tar.xz 42-minishell-2d75e800a1cd3dff630ec0080a864ef1779496c9.tar.zst 42-minishell-2d75e800a1cd3dff630ec0080a864ef1779496c9.zip |
New libft funcs
Diffstat (limited to 'libft/include/libft.h')
-rw-r--r-- | libft/include/libft.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libft/include/libft.h b/libft/include/libft.h index edd04d4..d2bea38 100644 --- a/libft/include/libft.h +++ b/libft/include/libft.h @@ -163,6 +163,8 @@ int ft_putendl(const char *s); int ft_putchar_fd(char c, int fd); int ft_putstr_fd(char *s, int fd); int ft_strcmp(const char *s1, const char *s2); +int ft_abs(int j); +long ft_labs(long j); long ft_memlchr(const void *s, int c, size_t n); long ft_strlchr(const char *s, int c); size_t ft_strlen(const char *s); |