diff options
Diffstat (limited to 'ft_isprint.c')
| -rw-r--r-- | ft_isprint.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ft_isprint.c b/ft_isprint.c new file mode 100644 index 0000000..73964ff --- /dev/null +++ b/ft_isprint.c @@ -0,0 +1,7 @@ +#include "libft.h" + +int +ft_isprint (int c) +{ + return (c >= 32 && c <= 126); +} |
