/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/15 11:33:36 by cacharle #+# #+# */ /* Updated: 2020/01/15 11:35:07 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isspace(int c) { return (c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r'); }