#include "libft.h" #include "test_utils.h" #include int main (void) { _s_section ("ft_toupper"); _s_test_int_range ("ft_toupper", ft_toupper, toupper, 0); _s_section ("ft_tolower"); _s_test_int_range ("ft_tolower", ft_tolower, tolower, 0); _s_print_results (); return (_s_fail != 0); }