creation du main de testing et du test de abs

This commit is contained in:
hugogogo
2021-08-10 16:40:52 +02:00
parent bcbe2086f5
commit d8aaada7fc
91 changed files with 4430 additions and 159 deletions

8
testing/srcs/test_sign.c Normal file
View File

@@ -0,0 +1,8 @@
#include "libft.h"
int ft_sign(int i)
{
if (i < 0)
return (-1);
return (1);
}