rt/libft/ft_isspace.c

20 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: scebula <scebula@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/26 09:43:41 by scebula #+# #+# */
/* Updated: 2015/11/26 09:45:49 by scebula ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isspace(int c)
{
return (c == ' ' || c == '\n' || c == '\v'
|| c == '\f' || c == '\r' || c == '\t');
}