-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_isalnum.c
20 lines (19 loc) · 1.05 KB
/
ft_isalnum.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isalnum.c :+: :+: */
/* +:+ */
/* By: ksmorozo <[email protected]> +#+ */
/* +#+ */
/* Created: 2020/10/30 12:33:33 by ksmorozo #+# #+# */
/* Updated: 2021/07/07 12:03:42 by ksmorozo ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isalnum(int argument)
{
if ((argument >= 'a' && argument <= 'z')
|| (argument >= 'A' && argument <= 'Z')
|| (argument >= '0' && argument <= '9'))
return (1);
return (0);
}