libft/ft_isspace.c

22 lines
1013 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tosuman <timo42@proton.me> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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');
}