diff --git a/ft_isalpha_test.c b/ft_isalpha_test.c index 10c55c9..91a2db0 100644 --- a/ft_isalpha_test.c +++ b/ft_isalpha_test.c @@ -7,8 +7,7 @@ int main(void) for (c = 0; c < 256; c++) { - /*printf("'%c' (%i); isalpha(c): %i\r\n", c, c, ft_isalpha(c));*/ - printf("'%c' (%i); isalpha(c): %i\r\n", c, c, ft_isdigit(c)); + printf("'%c' (%i); isalpha(c): %i\r\n", c, c, ft_isalpha(c)); } return (0); }