MCPcopy Create free account
hub / github.com/codr7/hacktical-c / hc_printf

Function hc_printf

stream1/stream1.c:67–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67size_t hc_printf(struct hc_stream *s, const char *spec, ...) {
68 va_list args;
69 va_start(args, spec);
70 hc_defer(va_end(args));
71 return hc_vprintf(s, spec, args);
72}
73
74void hc_stream_deinit(struct hc_stream *s) {
75 assert(s->deinit);

Callers 4

int_writeFunction · 0.85
stream1_testsFunction · 0.85
hc_fix_printFunction · 0.85
fun_printFunction · 0.85

Calls 1

hc_vprintfFunction · 0.85

Tested by 1

stream1_testsFunction · 0.68