mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 07:34:16 +00:00
feat: add ft_isprint function
This commit is contained in:
6
ft_isprint.c
Normal file
6
ft_isprint.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "libft.h"
|
||||
|
||||
int ft_isprint(int c)
|
||||
{
|
||||
return ((32 <= c && c <= 126));
|
||||
}
|
||||
Reference in New Issue
Block a user