MCPcopy Create free account
hub / github.com/F-Stack/f-stack / xo_emit_hf

Function xo_emit_hf

tools/libxo/libxo/libxo.c:6644–6656  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6642}
6643
6644xo_ssize_t
6645xo_emit_hf (xo_handle_t *xop, xo_emit_flags_t flags, const char *fmt, ...)
6646{
6647 ssize_t rc;
6648
6649 xop = xo_default(xop);
6650 va_start(xop->xo_vap, fmt);
6651 rc = xo_do_emit(xop, flags, fmt);
6652 va_end(xop->xo_vap);
6653 bzero(&xop->xo_vap, sizeof(xop->xo_vap));
6654
6655 return rc;
6656}
6657
6658xo_ssize_t
6659xo_emit_f (xo_emit_flags_t flags, const char *fmt, ...)

Callers

nothing calls this directly

Calls 3

xo_defaultFunction · 0.85
xo_do_emitFunction · 0.85
bzeroFunction · 0.85

Tested by

no test coverage detected