ajout abs, greater, smaller, sign

This commit is contained in:
hugogogo
2021-07-23 17:13:15 +02:00
parent 26147eeeeb
commit 8fd5257b23
6 changed files with 41 additions and 1 deletions

View File

@@ -107,6 +107,10 @@ void ft_putnbrendl(int n);
void ft_putnbrendl_fd(int n, int fd);
int ft_get_next_line(const int fd, char **line);
char *ft_concat_free(char *str1, char *str2);
int ft_abs(int n);
int ft_greater(int a, int b);
int ft_smaller(int a, int b);
int ft_sign(int i);