MCPcopy Create free account
hub / github.com/Bwar/CJsonObject / cJSON_Print

Function cJSON_Print

cJSON.c:445–448  ·  view source on GitHub ↗

Render a cJSON item/entity/structure to text. */

Source from the content-addressed store, hash-verified

443
444/* Render a cJSON item/entity/structure to text. */
445char *cJSON_Print(cJSON *item)
446{
447 return print_value(item, 0, 1);
448}
449char *cJSON_PrintUnformatted(cJSON *item)
450{
451 return print_value(item, 0, 0);

Callers 2

ToFormattedStringMethod · 0.85
GetMethod · 0.85

Calls 1

print_valueFunction · 0.85

Tested by

no test coverage detected