18 lines
980 B
C
18 lines
980 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isspace.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/16 19:06:46 by aortigos #+# #+# */
|
|
/* Updated: 2025/11/16 19:07:08 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isspace(char c)
|
|
{
|
|
return (c == 32 || (c >= 9 && c <= 13));
|
|
} |