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

Go to the source code of this file.

Functions

int ft_isdigit (int c)
 

Function Documentation

◆ ft_isdigit()

int ft_isdigit ( int  c)

Definition at line 15 of file ft_isdigit.c.

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