blob: 920dc95d71da17b43fc5e40981a937ed97e3f909 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "libft.h"
#include "test_utils.h"
#include <ctype.h>
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);
}
|