You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1019 B
22 lines
1019 B
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isspace.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/03/24 10:05:51 by narnaud #+# #+# */
|
|
/* Updated: 2022/05/03 09:47:28 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../libft.h"
|
|
|
|
int ft_isspace(int c)
|
|
{
|
|
if (c > 8 && c < 14)
|
|
return (1);
|
|
if (c == ' ')
|
|
return (1);
|
|
return (0);
|
|
}
|
|
|