diff options
Diffstat (limited to 'printf.c')
| -rw-r--r-- | printf.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -918,3 +918,10 @@ int fctprintf(void (*out)(char character, void* arg), void* arg, const char* for va_end(va);
return ret;
}
+
+
+int fctvprintf(void (*out)(char character, void* arg), void* arg, const char* format, va_list va)
+{
+ const out_fct_wrap_type out_fct_wrap = { out, arg };
+ return _vsnprintf(_out_fct, (char*)(uintptr_t)&out_fct_wrap, (size_t)-1, format, va);
+}
|
