rt/libft/ft_isalpha.c

19 lines
998 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: scebula <scebula@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/26 09:53:04 by scebula #+# #+# */
/* Updated: 2015/11/26 09:54:06 by scebula ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isalpha(int c)
{
return (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z'));
}