19 lines
981 B
C
19 lines
981 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalnum.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mdenys <mdenys@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/10/29 16:43:05 by mdenys #+# #+# */
|
|
/* Updated: 2020/10/29 19:50:43 by mdenys ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isalnum(int c)
|
|
{
|
|
return (ft_isalpha(c) || ft_isdigit(c));
|
|
}
|