-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isalnum.c
18 lines (16 loc) · 979 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: vsoares- <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/28 14:57:29 by vsoares- #+# #+# */
/* Updated: 2024/11/28 21:14:06 by vsoares- ### ########.fr */
/* */
/* ************************************************************************** */
#include "libV.h"
int ft_isalnum(int c)
{
return (ft_isalpha(c) || ft_isdigit(c));
}