* vsprintf - Format a string and place it in a buffer * @buf: The buffer to place the result into * @fmt: The format string to use * @args: Arguments for the format string * * Call this function if you are already dealing with a va_list. * You probably want sprintf instead. */
| 413 | * You probably want sprintf instead. |
| 414 | */ |
| 415 | int acl_vsprintf(char *buf, const char *fmt, va_list args) |
| 416 | { |
| 417 | return acl_vsnprintf(buf, 0xFFFFFFFFUL, fmt, args); |
| 418 | } |
| 419 | |
| 420 | |
| 421 | /** |
no test coverage detected
searching dependent graphs…