We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
void JSON_ADD_STR(JSON *json, const char *name, const char *str)
Adds string value to JSON object.
None
JSON j={0}; JSON_ADD_STR(&j, "name", "John Smith");
See more advanced example in JSON_ADD_STR_A.