

#include <nitro/std.h>
int STD_TVSPrintf( char *dst, const char *fmt, va_list vlist );
| dst | Storage destination buffer for the output string. |
| fmt | Output format string. |
| vlist | Variable argument list. |
Always returns the number of characters if the format string was output properly. The termination character ( \0 ) is not included in this number.
This function returns the simplified version of the format string.
This function is equivalent to STD_TVSNPrintf() except the storage destination buffer size is not a consideration.
This function is compiled with weak symbols. Therefore, you can overwrite them with your own function definitions.
STD_TSPrintf STD_TSNPrintf STD_TVSNPrintf
2007/04/20 Initial version.
CONFIDENTIAL