[SDK:CRT] Implement vswprintf()

This commit is contained in:
2024-08-24 16:33:16 -04:00
parent 5235ebdfa4
commit b870d5a015
2 changed files with 95 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ Abstract:
extern "C" {
#endif
#include <stdarg.h>
#include <string.h>
size_t wcslen(const wchar_t *str);
@@ -35,6 +36,8 @@ wchar_t *wmemset(wchar_t *dest, wchar_t c, size_t count);
wchar_t *wmemcpy(wchar_t *dest, const wchar_t *src, size_t count);
wchar_t *wmemmove(wchar_t *dest, const wchar_t *src, size_t count);
int vswprintf(wchar_t *wcs, size_t maxlen, const wchar_t *format, va_list args);
#ifdef __cplusplus
}
#endif