docs(intenal/strlen): adding the documentation of strlen

This commit is contained in:
Raphael 2025-09-19 17:27:45 +02:00
parent a1f18a6f97
commit b9c6df259a
No known key found for this signature in database

View file

@ -25,6 +25,13 @@ typedef struct s_format
t_func function;
} t_format;
/**
* @brief Computes the length of a string.
*
* @param s The input string.
*
* @return The number of characters in the string `s`.
*/
size_t ft_strlen(const char *str);
char *itoa_base(uint64_t nbr, char *base);