/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_iswhitespace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tmaze +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/02/25 16:11:19 by tmaze #+# #+# */ /* Updated: 2019/02/25 16:13:25 by tmaze ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_iswhitespace(char c) { return (c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r'); }