We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
void JSON_ADD_BOOL(JSON *json, const char *name, bool val)
Adds boolean value to JSON object.
None
JSON j={0}; JSON_ADD_BOOL(&j, "married", false);
See more advanced example in JSON_ADD_STR_A.