Files
libft/ft_isascii.c
2025-09-29 20:02:58 +02:00

7 lines
76 B
C

#include "libft.h"
int ft_isascii(int c)
{
return (c >= 0 && c <= 127);
}