diff options
Diffstat (limited to 'libft/include')
-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); |