/ ex04 / ft_is_negative_test.c.bak
ft_is_negative_test.c.bak
1  #include "./ft_is_negative.c"
2  
3  int	main(void)
4  {
5  	ft_is_negative(-69);
6  	ft_is_negative(420);
7  	ft_is_negative(0);
8  }