/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/12/01 14:58:04 by gtertysh #+# #+# */ /* Updated: 2016/12/01 15:05:30 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isspace(int c) { if ((c >= 0x09 && c <= 0x13) || c == 0x20) return (1); return (0); }