libft_testing/isalpha_test.c

13 lines
173 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, isalpha(c));
}
return (0);
}