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

16 lines
200 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, ft_isascii(c));
}
return (0);
}