libft_old/extended_libft/ft_isalpha.c
Willem Haffmans 326f52308e all
2024-07-26 22:32:04 +02:00

19 lines
998 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/05 18:42:04 by whaffman #+# #+# */
/* Updated: 2024/07/06 12:07:31 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isalpha(int c)
{
return (('A' <= c && 'Z' >= c) || ('a' <= c && 'z' >= c));
}