#include <nitro/os.h>
void OS_TPrintfEx( const char *fmt, ... );
fmt | Output format string. |
... | Variable number of arguments |
None.
Outputs a string. OS_TPrintf()
that has extended features provides support for non-standard conversion specifiers. See OS_VSNPrintfEx()
for the currently supported conversion specifiers.
This function is compiled with weak symbols. Therefore, you can overwrite them with your own function definitions.
The maximum string length that can be displayed is 255 characters. If a string with 256 or more characters is specified, all characters from the 256th character are ignored.
This function is used for debugging. It will not be included in the final ROM version (FINALROM
).
2009/10/02 Added the maximum displayable string length.
2006/10/23 Initial version.
CONFIDENTIAL