ft_calloc(). Norminette
This commit is contained in:
parent
41ed119416
commit
d64354612b
9 changed files with 154 additions and 27 deletions
|
|
@ -1,16 +1,27 @@
|
|||
/*
|
||||
#include<ctype.h>
|
||||
*/
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_isascii_test.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: lalgarra <lalgarra@student.42madrid.com> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/10/05 13:33:27 by lalgarra #+# #+# */
|
||||
/* Updated: 2025/10/05 13:34:20 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); isascii(c): %i\r\n", c, c, ft_isascii(c));
|
||||
c++;
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue