doc(char): adding the isspace documentation

This commit is contained in:
Raphael 2025-12-11 14:36:17 +01:00
parent 50cc782edd
commit 8a294513d8
No known key found for this signature in database

View file

@ -53,6 +53,14 @@ int ft_isdigit(int c);
*/ */
int ft_isprint(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 * @brief convert the upper case to lower case
* *