int vsnprintf(char *buf, size_t n, const char *format, va_list arg)
Compose a printf-formatted string into the target buffer using a variable argument list...
int snprintf(char *buf, size_t n, const char *format,...)
Compose a printf-formatted string into the target buffer.