/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tosuman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/22 17:38:55 by tosuman #+# #+# */ /* Updated: 2023/05/22 17:39:02 by tosuman ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isspace(int c) { return (c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == '\f' || c == '\v'); }