22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isspace.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gbrochar <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2015/11/28 14:37:03 by gbrochar #+# #+# */
|
|
/* Updated: 2015/11/28 14:39:18 by gbrochar ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isspace(int c)
|
|
{
|
|
if (c == '\t' || c == '\n' || c == '\f' || c == '\v' || c == '\r'
|
|
|| c == ' ')
|
|
return (1);
|
|
return (0);
|
|
}
|