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