libft_old/extended_libft/ft_isspace.c
Willem Haffmans 326f52308e all
2024-07-26 22:32:04 +02:00

20 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: o_ :::::: ::: */
/* ft_isspace.c :+: / :+::+: :+: */
/* +:+ > +:++:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#++#++:++#++ */
/* +#+ +#+#+ +#++#+ +#+ \o/ */
/* Created: 2024/07/26 21:54:01 by whaffman #+#+# #+#+# #+# #+# | */
/* Updated: 2024/07/26 21:55:03 by whaffman ### ### ### ### / \ */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isspace(int c)
{
return (' ' == c || '\f' == c || '\n' == c
|| '\r' == c || '\t' == c || '\v' == c);
}