maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
ft_isalpha.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_isalpha.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: rmikhayl <rmikhayl@student.42london.c +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2023/12/17 17:25:28 by rmikhayl #+# #+# */
9/* Updated: 2023/12/17 17:25:28 by rmikhayl ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13int ft_isalpha(int c)
14{
15 return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
16}
int ft_isalpha(int c)
Definition ft_isalpha.c:13