

#include <nitro/os.h>void OS_TWarning( const char *fmt, ... );
| fmt | Output format string. |
| ... | Variable number of arguments |
None.
Outputs a string. Internally, this function calls OS_VSNPrintf. Therefore, the usable string format (string output format) is more restricted than OS_Warning(). However, you can save on the code and stack overhead by using this function instead of OS_VSNPrintf() or OS_Warning().
The output format is:
<filename>:<linenumber> Warning: <string>
The filename and line number described by this OS_TWarning function are indicated by <filename> and <linenumber>. <string> is created from fmt and the variable number of arguments.
This function is used for debugging. It will not be generated in the final ROM version (FINALROM).
OS_Warning() is actually a #define of OSi_Warning(). OSi_Warning() is compiled with weak symbols. Therefore you can overwrite them with your own function definitions.
2004/11/25 Added internal operation and description of weak symbols.
2004/09/10 Initial version.
CONFIDENTIAL