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

Go to the source code of this file.

Functions

int ft_isupper (int c)
 

Function Documentation

◆ ft_isupper()

int ft_isupper ( int  c)

Definition at line 15 of file ft_isupper.c.

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