20 lines
1.0 KiB
C
20 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_iswhitespace.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/02/25 16:11:19 by tmaze #+# #+# */
|
|
/* Updated: 2019/02/25 16:13:25 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_iswhitespace(char c)
|
|
{
|
|
return (c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f'
|
|
|| c == '\r');
|
|
}
|