From 9fa6e64941c11da5ae6cf641df08a6198709c1db Mon Sep 17 00:00:00 2001 From: Marco Paland Date: Tue, 5 Jun 2018 15:29:25 +0200 Subject: chore(printf): update comments --- printf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/printf.h b/printf.h index 33592c6..a51e9a5 100644 --- a/printf.h +++ b/printf.h @@ -83,8 +83,8 @@ int vsnprintf(char* buffer, size_t count, const char* format, va_list va); /** * printf with output function * You may use this as dynamic alternative to printf() with its fixed _putchar() output - * \param out An output function which takes one character - * \param user A pointer to user data passed to output function + * \param out An output function which takes one character and an argument pointer + * \param arg An argument pointer for user data passed to output function * \param format A string that specifies the format of the output * \return The number of characters that are sent to the output function, not counting the terminating null character */ -- cgit v1.2.3