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

13
ft_isdigit_test.c Normal file
View file

@ -0,0 +1,13 @@
#include "libft.h"
#include<stdio.h>
int main(void)
{
int c;
for (c = 0; c < 256; c++)
{
printf("'%c' (%i); isdigit(c): %i\r\n", c, c, ft_isdigit(c));
}
return (0);
}