MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_sprintf

Function acl_sprintf

lib_acl/src/stdlib/acl_vsprintf.c:427–436  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

425 * @...: Arguments for the format string
426 */
427int 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

Callers

nothing calls this directly

Calls 1

acl_vsprintfFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…