🏗️」 wip: Testing pipe check

This commit is contained in:
2024-07-29 20:46:17 +02:00
parent c3aad1290d
commit 59c03e8e42
12 changed files with 369 additions and 10 deletions

View File

@ -0,0 +1,16 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/29 19:19:20 by adjoly #+# #+# */
/* Updated: 2024/07/29 19:20:57 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return (c == 32 || c == 9);
}