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

This commit is contained in:
Raphael 2025-09-19 17:29:18 +02:00
parent f818b0764a
commit 0385f63d38
No known key found for this signature in database

View file

@ -79,6 +79,13 @@ int flag_p(va_list args, int fd);
*/ */
int flag_percent(va_list args, int fd); int flag_percent(va_list args, int fd);
/**
* @brief Function to handle the flag s in printf's function
*
* @param args list of arguments
* @param fd file descriptor
* @return The number of character write in the fd (always 1)
*/
int flag_s(va_list args, int fd); int flag_s(va_list args, int fd);
int flag_u(va_list args, int fd); int flag_u(va_list args, int fd);