blob: 63f21fa32a8957cd8340a829a730d46fcc82d943 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/08/11 13:59:45 by chuhlig #+# #+# */
/* Updated: 2024/08/11 14:04:23 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isspace(char c)
{
if (c == ' ' || c == '\t')
return (1);
return (0);
}
|