From 450944a7ca3577ad86717671c734393b25dd1a93 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 19 Sep 2025 17:29:43 +0200 Subject: [PATCH] docs(intenal/flag_x_maj): adding the documentation of flag_x_maj --- includes/_internal.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/includes/_internal.h b/includes/_internal.h index 5a9f980..68445a6 100644 --- a/includes/_internal.h +++ b/includes/_internal.h @@ -106,6 +106,13 @@ int flag_u(va_list args, int fd); */ int flag_x(va_list args, int fd); +/** + * @brief Function to handle the flag X 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_x_maj(va_list args, int fd); #endif