#include <nitro/os.h>
void OS_TVPrintf( const char *fmt, va_list vlist );
fmt | Output format string. |
vlist | Variable argument list. |
None.
Outputs a string. Internally, this function calls OS_VSNPrintf()
. Therefore the useable string format (string output format) is more restricted than it would be with OS_VPrintf()
. However, you can save on the code and stack overhead by using this function instead of OS_VSNPrintf()
or OS_VPrintf()
. With the exception of the argument format, this is equivalent to OS_TPrintf()
.
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 Explained the maximum displayable string length.
2004/11/25 Added a description of the weak symbol.
2004/09/10 Initial version.
CONFIDENTIAL