first commit

This commit is contained in:
KeyZox committed 2023-08-06 20:12:38 +02:00
1 parent 1fe062c970
commit eb6b113e51
125 files changed
+2987

No files matched your search

+14
View File
@@ -0,0 +1,14 @@
#include <stdio.h>
#include <unistd.h>
void ft_is_negative(int n)
{
if (n < 0)
{
write(1, "N", 1);
}
else
{
write(1, "P", 1);
}
}