MCPcopy Create free account
hub / github.com/crawl/crawl / json_mkbool

Function json_mkbool

crawl-ref/source/json.cc:534–539  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

532}
533
534JsonNode *json_mkbool(bool b)
535{
536 JsonNode *ret = mknode(JSON_BOOL);
537 ret->bool_ = b;
538 return ret;
539}
540
541static JsonNode *mkstring(char *s)
542{

Callers 3

_branch_info_arrayFunction · 0.85
parse_valueFunction · 0.85
_append_save_infoFunction · 0.85

Calls 1

mknodeFunction · 0.85

Tested by

no test coverage detected