/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gbrochar +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/28 14:37:03 by gbrochar #+# #+# */ /* Updated: 2015/11/28 14:39:18 by gbrochar ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isspace(int c) { if (c == '\t' || c == '\n' || c == '\f' || c == '\v' || c == '\r' || c == ' ') return (1); return (0); }