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

Function acl_vsprintf

lib_acl/src/stdlib/acl_vsprintf.c:415–418  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

413 * You probably want sprintf instead.
414 */
415int acl_vsprintf(char *buf, const char *fmt, va_list args)
416{
417 return acl_vsnprintf(buf, 0xFFFFFFFFUL, fmt, args);
418}
419
420
421/**

Callers 1

acl_sprintfFunction · 0.85

Calls 1

acl_vsnprintfFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…