19 lines
980 B
C
19 lines
980 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalnum.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/09/20 17:52:29 by aortigos #+# #+# */
|
|
/* Updated: 2023/10/26 07:40:16 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isalnum(int c)
|
|
{
|
|
return (ft_isdigit(c) || ft_isalpha(c));
|
|
}
|