From d155c9f9819495a84059811593c8f9b975d7f729 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 19 Sep 2025 17:28:34 +0200 Subject: [PATCH] docs(intenal/flag_p): adding the documentation of flag_p --- includes/_internal.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/includes/_internal.h b/includes/_internal.h index c19c1da..8e8cadb 100644 --- a/includes/_internal.h +++ b/includes/_internal.h @@ -61,6 +61,13 @@ int flag_c(va_list args, int fd); */ int flag_i(va_list args, int fd); +/** + * @brief Function to handle the flag p in printf's function + * + * @param args list of arguments + * @param fd file descriptor + * @return The number of character write in the fd + */ int flag_p(va_list args, int fd); int flag_percent(va_list args, int fd);