libft_testing/ft_isalpha_test.c
2025-10-03 21:21:01 +02:00

14 lines
244 B
C

#include "libft.h"
#include<stdio.h>
int main(void)
{
int c;
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));
}
return (0);
}