-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isalnum.c
30 lines (27 loc) · 1.17 KB
/
ft_isalnum.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalnum.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sizerese <sizerese@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/05 20:29:30 by sizerese #+# #+# */
/* Updated: 2023/07/30 21:44:33 by sizerese ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isalnum(int c)
{
if ((c >= 65 && c <= 90) || (c >= 97 && c <= 122)
|| (c >= '0' && c <= '9'))
{
return (1);
}
return (0);
}
// int main(void)
// {
// printf("%d\n", ft_isalnum('.'));
// printf("%d\n", ft_isalnum('e'));
// printf("%d\n", ft_isalnum('@'));
// }