doc(char): adding the isspace documentation
This commit is contained in:
parent
50cc782edd
commit
8a294513d8
1 changed files with 8 additions and 0 deletions
|
|
@ -53,6 +53,14 @@ int ft_isdigit(int c);
|
|||
*/
|
||||
int ft_isprint(int c);
|
||||
|
||||
/**
|
||||
* @brief Check if the character is whitespace
|
||||
*
|
||||
* @param c the character
|
||||
* @return 1 if the char is whitespace otherwise 0
|
||||
*/
|
||||
int ft_isspace(int c);
|
||||
|
||||
/**
|
||||
* @brief convert the upper case to lower case
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue