ft_calloc(). Norminette
This commit is contained in:
parent
41ed119416
commit
d64354612b
9 changed files with 154 additions and 27 deletions
|
|
@ -6,20 +6,23 @@
|
|||
/* By: lalgarra <lalgarra@student.42madrid.com> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/10/03 18:27:44 by lalgarra #+# #+# */
|
||||
/* Updated: 2025/10/03 20:17:16 by lalgarra ### ########.fr */
|
||||
/* Updated: 2025/10/05 13:38:43 by lalgarra ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
#include<stdio.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int p1;
|
||||
int p1;
|
||||
|
||||
for (p1 = 0; p1 < 256; p1++)
|
||||
p1 = 0;
|
||||
while (p1 < 256)
|
||||
{
|
||||
printf("'%c' (%i); isprint(c)!=0: %i\r\n", p1, p1, ft_isprint(p1)!=0);
|
||||
printf("'%c' (%i); isprint(c)!=0: %i\r\n",
|
||||
p1, p1, ft_isprint(p1) != 0);
|
||||
p1++;
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue