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