mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 09:34:16 +00:00
7 lines
79 B
C
7 lines
79 B
C
#include "libft.h"
|
|
|
|
int ft_isprint(int c)
|
|
{
|
|
return ((32 <= c && c <= 126));
|
|
}
|