diff options
author | Marco Paland <marco@paland.com> | 2018-06-05 15:29:25 +0200 |
---|---|---|
committer | Marco Paland <marco@paland.com> | 2018-06-05 15:29:25 +0200 |
commit | 9fa6e64941c11da5ae6cf641df08a6198709c1db (patch) | |
tree | e0b7ed02eaa5efd89a0f5a2af9e0900bb08589f4 | |
parent | 23d0687aab9a7e009e8a485baf79f4ba9295995b (diff) | |
download | printf-9fa6e64941c11da5ae6cf641df08a6198709c1db.tar.gz printf-9fa6e64941c11da5ae6cf641df08a6198709c1db.tar.bz2 printf-9fa6e64941c11da5ae6cf641df08a6198709c1db.zip |
chore(printf): update comments
-rw-r--r-- | printf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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
*/
|