18 lines
985 B
C
18 lines
985 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isspace.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/01/14 12:00:00 by rparodi #+# #+# */
|
|
/* Updated: 2025/01/14 12:00:00 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "char.h"
|
|
|
|
int ft_isspace(int c)
|
|
{
|
|
return (c == ' ' || (c >= '\t' && c <= '\r'));
|
|
}
|