luna: Adjust cstyle_format's description
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-03-02 13:40:42 +01:00
parent de38eb6877
commit 3a2e5b7ce0
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -5,7 +5,8 @@
typedef Result<void> (*callback_t)(char, void*);
// Used to format anything that can fail (writing to C FILEs, etc...)
// Format output according to a format string and a list of variadic arguments. callback is called with arg for every
// character in the resulting string.
Result<usize> cstyle_format(const char* format, callback_t callback, void* arg, va_list ap);
// Convenience function which outputs into a fixed-size buffer (not unlike vsnprintf)