/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_iswhitespace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include t_bool ft_iswhitespace(int c) { if (c == '\t' || c == '\v' || c == '\f' || c == '\r' || c == ' ') { return (TRUE); } return (FALSE); }