maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
ft_isalpha.c File Reference

Go to the source code of this file.

Functions

int ft_isalpha (int c)
 

Function Documentation

◆ ft_isalpha()

int ft_isalpha ( int  c)

Definition at line 13 of file ft_isalpha.c.

14{
15 return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
16}

Referenced by ft_isalnum().

Here is the caller graph for this function: