nn::nstd::TSNPrintf Function
s32 TSNPrintf(
wchar_t * dst,
size_t len,
const wchar_t * fmt,
...
);
| 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 | ... | Specifies a parameter corresponding to the formatted string. |
Outputs a string. Memory-conserving version of snprintf.
This is the wchar_t version.
CONFIDENTIAL