piscine-timo-moulinette/c00/ex04/ft_is_negative_test.c.tmp

8 lines
93 B
Plaintext

int main(void)
{
ft_is_negative(5);
ft_is_negative(0);
ft_is_negative(-5);
return (0);
}