/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 09:43:41 by scebula #+# #+# */ /* Updated: 2015/11/26 09:45:49 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isspace(int c) { return (c == ' ' || c == '\n' || c == '\v' || c == '\f' || c == '\r' || c == '\t'); }