Desde vogsphere 250929_1801, probando adaptación a tener tests en repo aparte

This commit is contained in:
lalgarra 2025-09-30 18:53:31 +02:00
commit a8bcf5201d
9 changed files with 126 additions and 0 deletions

16
isascii_test.c Normal file
View file

@ -0,0 +1,16 @@
/*
#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);
}