summaryrefslogtreecommitdiffstats
path: root/libft/ft_isalnum.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/ft_isalnum.c')
-rw-r--r--libft/ft_isalnum.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/libft/ft_isalnum.c b/libft/ft_isalnum.c
deleted file mode 100644
index e9e1134..0000000
--- a/libft/ft_isalnum.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* ************************************************************************** */
-/* LE - / */
-/* / */
-/* ft_isalnum.c .:: .:/ . .:: */
-/* +:+:+ +: +: +:+:+ */
-/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
-/* #+# #+ #+ #+# */
-/* Created: 2019/10/07 18:07:44 by rbousset #+# ## ## #+# */
-/* Updated: 2019/10/13 08:45:57 by rbousset ### #+. /#+ ###.fr */
-/* / */
-/* / */
-/* ************************************************************************** */
-
-#include "libft.h"
-
-int
- ft_isalnum(int c)
-{
- if (ft_isalpha(c) || ft_isdigit(c))
- return (1);
- return (0);
-}