diff options
Diffstat (limited to 'io/wrap/vsnprintf.c')
-rw-r--r-- | io/wrap/vsnprintf.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/io/wrap/vsnprintf.c b/io/wrap/vsnprintf.c new file mode 100644 index 0000000..efe2f85 --- /dev/null +++ b/io/wrap/vsnprintf.c @@ -0,0 +1,9 @@ +#define NO_OPAQUE_TYPE +#include "io.h" +#include <wchar.h> + +int _vsnprintf_wrap(char *string, size_t max_size, char const *restrict format, + va_list arg) +{ + return vsnprintf(string, max_size, format, arg); +} |