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