minishell/stdme/src/char/isalpha.c
2024-05-20 00:35:39 +02:00

18 lines
1,017 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/04 16:19:40 by maiboyer #+# #+# */
/* Updated: 2023/11/08 04:01:25 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
#include "me/char/char.h"
bool me_isalpha(char chr)
{
return (('z' >= chr && chr >= 'a') || ('Z' >= chr && chr >= 'A'));
}