add ft_abs

This commit is contained in:
Tanguy MAZE
2018-05-05 16:52:49 +02:00
parent 0b57c88beb
commit 0ea4e74d77
6 changed files with 27 additions and 20 deletions

View File

@@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/08 00:12:36 by tmaze #+# #+# */
/* Updated: 2018/04/23 15:45:34 by tmaze ### ########.fr */
/* Updated: 2018/05/05 16:49:16 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -128,5 +128,6 @@ void ft_sort_params(int ac, char **av);
void ft_print_words_tables(char **tab);
t_list *ft_lstaddend(t_list **alst, t_list *new);
char *ft_strndup(const char *s1, size_t n);
unsigned int ft_abs(int nb);
#endif