feat: add ft_isprint function

This commit is contained in:
2025-09-29 20:02:40 +02:00
parent 68e6c61de9
commit a53f74af41
2 changed files with 14 additions and 1 deletions

6
ft_isprint.c Normal file
View File

@@ -0,0 +1,6 @@
#include "libft.h"
int ft_isprint(int c)
{
return ((32 <= c && c <= 126));
}