Files
cub3d/lib/libft/ft_isspace.c
2025-11-16 20:26:45 +01:00

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));
}