Syntax | #include <stdarg.h> int vsnprintf(char *s, size_t n, const char *format, va_list arg); | |
Description | #include <stdarg.h> int vsnprintf(char *s, size_t n, const char *format, va_list arg);
Parameters: | |
Return val. | < 0 | n > |
= 0 .. n-1 | It was possible to edit the output completely. The return value specifies the length of the output without the terminating | |
> n | It was not possible to edit the output completely. The return value specifies the length of the output without the terminating |