/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_is_space.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: yantoine +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/26 13:54:02 by yantoine #+# #+# */ /* Updated: 2024/10/26 13:55:48 by yantoine ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_is_space(char c) { return (c == ' ' || c == '\t' || c == '\n' || \ c == '\v' || c == '\f' || c == '\r'); }