gnl integre au main

This commit is contained in:
hugogogo
2021-07-24 11:57:54 +02:00
parent 0c4e4419c7
commit 0bf59a09b9
192 changed files with 6157 additions and 10 deletions

8
libftt/srcs/ft_abs.c Normal file
View File

@@ -0,0 +1,8 @@
#include "libft.h"
int ft_abs(int n)
{
if (n < 0)
n *= -1;
return (n);
}