1
0
2024-09-10 16:27:06 +02:00

21 lines
990 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isascii.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: madumerg <madumerg@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/30 13:32:37 by madumerg #+# #+# */
/* Updated: 2023/11/02 14:58:27 by madumerg ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isascii(int i)
{
if (i >= 0 && i <= 127)
return (1);
return (0);
}