

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