/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: victor +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/09/08 18:27:49 by victor #+# #+# */ /* Updated: 2024/09/08 18:27:55 by victor ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isspace(int c) { return (c == ' ' || (c > 9 && c < 14)); }