aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_isalnum.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libft/src/ft_isalnum.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/libft/src/ft_isalnum.c b/libft/src/ft_isalnum.c
new file mode 100644
index 0000000..1ab9ca2
--- /dev/null
+++ b/libft/src/ft_isalnum.c
@@ -0,0 +1,22 @@
+/* ************************************************************************** */
+/* 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);
+}