/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/03/24 10:05:51 by narnaud #+# #+# */ /* Updated: 2022/03/24 10:06:15 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_isspace(char c) { if (c > 8 && c < 14) return (1); if (c == ' ') return (1); return (0); }