Files
cub3d/lib/libft/ft_isspace.c
2025-12-09 20:04:37 +01:00

19 lines
981 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/16 19:06:46 by aortigos #+# #+# */
/* Updated: 2025/12/09 20:02:30 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isspace(char c)
{
return (c == 32 || (c >= 9 && c <= 13));
}