WriteFmt
- Macro
- August 22, 2025
Table of Contents
WriteFmt
WriteFmt
Description
Write formatted output to the standard output stream (stdout
). This is a convenience macro calling FWriteFmt with stdout
.
Parameters
Name | Direction | Description |
---|---|---|
fmtstr | in | Format 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.