Rev 2131 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2131 | Rev 2307 | ||
---|---|---|---|
Line 42... | Line 42... | ||
42 | * @param ap argument list |
42 | * @param ap argument list |
43 | * \see For more details about format string see printf_core. |
43 | * \see For more details about format string see printf_core. |
44 | */ |
44 | */ |
45 | int vsprintf(char *str, const char *fmt, va_list ap) |
45 | int vsprintf(char *str, const char *fmt, va_list ap) |
46 | { |
46 | { |
47 | return vsnprintf(str, (size_t)-1, fmt, ap); |
47 | return vsnprintf(str, (size_t) - 1, fmt, ap); |
48 | } |
48 | } |
49 | 49 | ||
50 | /** @} |
50 | /** @} |
51 | */ |
51 | */ |