-
Notifications
You must be signed in to change notification settings - Fork 4
JSON_GET_STR_A
Jurek Muszyński edited this page Mar 31, 2022
·
6 revisions
Retrieves string value from JSON array. If element is of different type (i.e. integer) then string representation will be returned.
TRUE if element has been found, otherwise FALSE.
for ( int i=0; i<JSON_COUNT(&json); ++i )
OUT("<p>%d-th name: %s</p>", i, JSON_GET_STR_A(&json, i));