WriteFmt

Table of Contents

WriteFmt

Description

Write formatted output to the standard output stream (stdout). This is a convenience macro calling FWriteFmt with stdout.

Parameters

NameDirectionDescription
fmtstrinFormat string with {} placeholders. should be wrapped with variable.

Success

Placeholders in fmtstr are replaced by the passed arguments, and the resulting formatted string is written to stdout.

Failure

Failure might occur during memory allocation for the temporary string or during the write operation to stdout (handled by fputs). Errors from StrWriteFmtInternal (logging messages) might also occur.

Usage example (Cross-references)

No external code usages found in the scanned files.

Share :

Related Posts

JW_STR

JW_STR Description Append a string value (quoted) to the JSON.

Read More

JW_BOOL

JW_BOOL Description Append a boolean value to the JSON as unquoted true/false.

Read More

StrWriteFmtInternal

StrWriteFmtInternal Description Print out a formatted string with rust-style placeholders to given string o.

Read More