libft_testing/isascii_test.c

16 lines
197 B
C

/*
#include<ctype.h>
*/
#include "libft.h"
#include<stdio.h>
int main(void)
{
int c;
for (c = 0; c < 256; c++)
{
printf("'%c' (%i); isascii(c): %i\r\n", c, c, isascii(c));
}
return (0);
}