nn::nstd::TVSNPrintf Function
s32 TVSNPrintf(
wchar_t * dst,
size_t len,
const wchar_t * fmt,
va_list vlist
);
| Name | Description | |
|---|---|---|
| out | dst | Specifies the buffer that stores the result. |
| in | len | Specifies the length of the dst buffer. |
| in | fmt | Specifies a general printf formatted text string. However, it cannot specify floating point strings (e.g., %f). |
| in | vlist | Specifies the parameter. |
Outputs a string. Memory-conserving version of vsnprintf.
This is the wchar_t version.
CONFIDENTIAL