19 lines
981 B
C
19 lines
981 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalnum.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gbrochar <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2015/11/27 18:51:03 by gbrochar #+# #+# */
|
|
/* Updated: 2015/11/28 15:22:14 by gbrochar ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isalnum(int c)
|
|
{
|
|
return (ft_isalpha(c) || ft_isdigit(c));
|
|
}
|