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

Function hc_value_write

reflect/reflect.c:40–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40void hc_value_write(struct hc_value *v, struct hc_stream *out) {
41 assert(v->type->write);
42 v->type->write(v, out);
43}
44
45static void bool_write(const struct hc_value *v, struct hc_stream *out) {
46 hc_puts(out, v->as_bool ? "true" : "false");

Callers 3

hc_value_printFunction · 0.85
literal_printFunction · 0.85
field_writeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected