Correction: function names must be ft_*

This commit is contained in:
lalgarra 2025-10-03 21:21:01 +02:00
parent 81f932f0be
commit 6b7a5d0ffb
12 changed files with 27 additions and 23 deletions

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