ft_calloc(). Norminette

This commit is contained in:
lalgarra 2025-10-05 13:48:30 +02:00
parent 41ed119416
commit d64354612b
9 changed files with 154 additions and 27 deletions

View file

@ -1,13 +1,27 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalnum_test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lalgarra <lalgarra@student.42madrid.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/05 13:35:25 by lalgarra #+# #+# */
/* Updated: 2025/10/05 13:35:54 by lalgarra ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include<stdio.h>
#include <stdio.h>
int main(void)
{
int c;
int c;
for (c = 0; c < 256; c++)
c = 0;
while (c < 256)
{
printf("'%c' (%i); isalnum(c): %i\r\n", c, c, ft_isalnum(c));
c++;
}
return (0);
}