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

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 13 of file ft_isdigit.c.

14{
15 return (c >= '0' && c <= '9');
16}

Referenced by ft_is_double(), ft_is_num(), ft_isalnum(), ft_isnumber(), tmp_adj(), and token_adj().

Here is the caller graph for this function: