* sprintf - Format a string and place it in a buffer * @buf: The buffer to place the result into * @fmt: The format string to use * @...: Arguments for the format string */
| 425 | * @...: Arguments for the format string |
| 426 | */ |
| 427 | int acl_sprintf(char * buf, const char *fmt, ...) |
| 428 | { |
| 429 | va_list args; |
| 430 | int i; |
| 431 | |
| 432 | va_start(args, fmt); |
| 433 | i=acl_vsprintf(buf,fmt,args); |
| 434 | va_end(args); |
| 435 | return i; |
| 436 | } |
| 437 |
nothing calls this directly
no test coverage detected
searching dependent graphs…