-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isalnum.c
18 lines (17 loc) · 1021 Bytes
/
ft_isalnum.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalnum.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jergoh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/21 10:18:09 by jergoh #+# #+# */
/* Updated: 2023/09/21 10:18:10 by jergoh ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalnum(int i)
{
if ((i >= 48 && i <= 57) || (i >= 65 && i <= 90) || (i >= 97 && i <= 122))
return (1);
return (0);
}