-
Notifications
You must be signed in to change notification settings - Fork 4
JSON_GET_STR
Jurek Muszyński edited this page Mar 31, 2022
·
7 revisions
Retrieves string value from JSON object. If name is of different type (i.e. integer) then string representation will be returned.
TRUE if element has been found, otherwise FALSE.
JSON json={0};
if ( !JSON_FROM_STRING(&json, some_string) )
OUT("some_string is not a JSON");
else
{
char value[256];
if ( !JSON_GET_STR(&json, "name", value, 255) )
OUT("Couldn't get name");
else
OUT("<p>Name: %s</p>", value);
}