mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 01:34:15 +00:00
7 lines
76 B
C
7 lines
76 B
C
#include "libft.h"
|
|
|
|
int ft_isascii(int c)
|
|
{
|
|
return (c >= 0 && c <= 127);
|
|
}
|