MCPcopy Create free account
hub / github.com/git/git / jw_array_bool

Function jw_array_bool

json-writer.c:329–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

327}
328
329void jw_array_bool(struct json_writer *jw, int value)
330{
331 if (value)
332 jw_array_true(jw);
333 else
334 jw_array_false(jw);
335}
336
337void jw_array_null(struct json_writer *jw)
338{

Callers

nothing calls this directly

Calls 2

jw_array_trueFunction · 0.85
jw_array_falseFunction · 0.85

Tested by

no test coverage detected