Вы имеете в виду swprintf()
?
swprintf()
описано в стандарте C99.Вам нужно <wchar.h>
.
Если wsprintf
делает то же самое, что и swprintf
, вы можете рассмотреть возможность использования стандартной функции.
7.24.2.3 The swprintf function
Synopsis
[#1]
#include <wchar.h>
int swprintf(wchar_t * restrict s,
size_t n,
const wchar_t * restrict format, ...);
Description
[#2] The swprintf function is equivalent to fwprintf, except
that the argument s specifies an array of wide characters
into which the generated output is to be written, rather
than written to a stream. No more than n wide characters
are written, including a terminating null wide character,
which is always added (unless n is zero).