minishell
ft_isalpha.c File Reference
#include "ft_is.h"
Include dependency graph for ft_isalpha.c:

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 15 of file ft_isalpha.c.

16 {
17  return (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z'));
18 }
Here is the caller graph for this function: