From 8a294513d87d42679efd05ddbb85435e553cea03 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 11 Dec 2025 14:36:17 +0100 Subject: [PATCH] doc(char): adding the isspace documentation --- includes/char.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/includes/char.h b/includes/char.h index 394e408..18e78c3 100644 --- a/includes/char.h +++ b/includes/char.h @@ -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 *