Files
aoc/2022/2/libft/ft_isascii.c
2024-12-02 12:32:14 +01:00

19 lines
970 B
C
Executable File

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isascii.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/30 12:15:36 by tomoron #+# #+# */
/* Updated: 2023/10/30 12:31:38 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isascii(int c)
{
if (c >= 0 && c <= 127)
return (1);
return (0);
}