MCPcopy Index your code
hub / github.com/F-Stack/f-stack / sbuf_printf

Function sbuf_printf

freebsd/kern/subr_sbuf.c:711–721  ·  view source on GitHub ↗

* Format the given arguments and append the resulting string to an sbuf. */

Source from the content-addressed store, hash-verified

709 * Format the given arguments and append the resulting string to an sbuf.
710 */
711int
712sbuf_printf(struct sbuf *s, const char *fmt, ...)
713{
714 va_list ap;
715 int result;
716
717 va_start(ap, fmt);
718 result = sbuf_vprintf(s, fmt, ap);
719 va_end(ap);
720 return (result);
721}
722
723/*
724 * Append a character to an sbuf.

Callers 15

fletcher_4_paramFunction · 0.85
log_syseventFunction · 0.85
kstat_sysctl_ioFunction · 0.85
kstat_sysctl_rawFunction · 0.85
rule_printfFunction · 0.85
rules_to_stringFunction · 0.85
biba_element_to_stringFunction · 0.85

Calls 1

sbuf_vprintfFunction · 0.85

Tested by

no test coverage detected