-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isalnum.c
30 lines (26 loc) · 1.14 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: sramos <[email protected]> +#+ */
/* +#+ */
/* Created: 2023/10/03 10:46:43 by sramos #+# #+# */
/* Updated: 2023/10/28 12:39:48 by sramos ######## odam.nl */
/* */
/* ************************************************************************** */
// #include <stdio.h>
// #include <ctype.h>
#include "libft.h"
int ft_isalnum(int i)
{
return (ft_isalpha(i) || ft_isdigit(i));
}
// int main(void)
// {
// int str;
// str = 42;
// printf("%i\n", ft_isalnum(str));
// printf("%i\n", isalnum(str));
// return (0);
// }