mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
17 lines
980 B
C
17 lines
980 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalpha.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jguelen <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/15 09:41:00 by jguelen #+# #+# */
|
|
/* Updated: 2024/10/23 15:57:05 by jguelen ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_isalpha(int c)
|
|
{
|
|
return ((c <= 'z' && c >= 'a')
|
|
|| (c <= 'Z' && c >= 'A'));
|
|
}
|