/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/14 12:00:00 by rparodi #+# #+# */ /* Updated: 2025/01/14 12:00:00 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include "char.h" int ft_isspace(int c) { return (c == ' ' || (c >= '\t' && c <= '\r')); }