docs(intenal/strlen): adding the documentation of strlen
This commit is contained in:
parent
a1f18a6f97
commit
b9c6df259a
1 changed files with 7 additions and 0 deletions
|
|
@ -25,6 +25,13 @@ typedef struct s_format
|
||||||
t_func function;
|
t_func function;
|
||||||
} t_format;
|
} 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);
|
size_t ft_strlen(const char *str);
|
||||||
|
|
||||||
char *itoa_base(uint64_t nbr, char *base);
|
char *itoa_base(uint64_t nbr, char *base);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue