Next: vswscanf
, Previous: vsscanf
, Up: ISO C and POSIX Function Substitutes [Contents][Index]
vswprintf
POSIX specification:
https://pubs.opengroup.org/onlinepubs/9699919799/functions/vswprintf.html
Gnulib module: —
Portability problems fixed by Gnulib:
Portability problems not fixed by Gnulib:
wchar_t
is a 16-bit type and therefore cannot
accommodate all Unicode characters.
w8
,
w16
, w32
, w64
, wf8
, wf16
, wf32
,
wf64
) on some platforms:
glibc 2.37, musl libc, macOS 14, FreeBSD 13.2, NetBSD 10.0, OpenBSD 7.5, AIX 7.3, Solaris 11.4, Cygwin 3.5.3, mingw, MSVC, Android 9.0.
"%#.0x"
or "%#.0X"
with a zero argument yields an
incorrect result (non-empty) on some platforms:
Mac OS X 10.6.
%m
directive is not portable, use %s
mapped to an
argument of strerror(errno)
(or a version of strerror_r
)
instead.
%c
and %s
conversions may fail
on some platforms:
glibc 2.35.
Next: vswscanf
, Previous: vsscanf
, Up: ISO C and POSIX Function Substitutes [Contents][Index]