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

View file

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