TSPrintf

nn::nstd::TSPrintf Function

Syntax

s32 TSPrintf(
     wchar_t * dst,
     const wchar_t * fmt,
     ...
);

Parameters

Name Description
out dst Specifies the buffer that stores the result.
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.

Return Values

Returns the number of characters of the formatted string correctly output.

Description

Outputs a string. Memory-conserving version of sprintf.

This is the wchar_t version.


CONFIDENTIAL