/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: chuhlig +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/08/11 13:59:45 by chuhlig #+# #+# */ /* Updated: 2024/08/11 14:04:23 by chuhlig ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isspace(char c) { if (c == ' ' || c == '\t') return (1); return (0); }