Files
reactos/sdk/lib/crt/printf/_vswprintf.c
T
Timo Kreuzer da64ad34ef [CRT] Stop implementing non-conforming swprintf / vswprintf
- Don't compile the non-conformng swprintf (it is identical to _swprinf)
- Rename swprintf to _swprintf
- Forward non-conforming exports to the underscored versions in CRT dlls
2026-05-07 06:27:58 +00:00

15 lines
360 B
C

/*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/printf/vswprintf.c
* PURPOSE: Implementation of vswprintf
* PROGRAMMER: Timo Kreuzer
*/
#define _sxprintf _vswprintf
#define USE_COUNT 0
#define USE_VARARGS 1
#define _UNICODE
#include "_sxprintf.c"