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