From 2d75e800a1cd3dff630ec0080a864ef1779496c9 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 28 Sep 2020 18:57:09 +0200 Subject: New libft funcs --- libft/include/libft.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libft/include') 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); -- cgit v1.2.3