-
Notifications
You must be signed in to change notification settings - Fork 56
MTY_JSONArraySetItem
chrisd1100 edited this page Aug 25, 2022
·
2 revisions
Set an item in an MTY_JSON
array.
bool MTY_JSONArraySetItem(
MTY_JSON * json,
uint32_t index,
MTY_JSON * value
);
json
(MTY_JSON *
)
An MTY_JSON
array.
index
(uint32_t
)
The array index where value
will be stored.
value
(MTY_JSON *
)
Item to set at index
.
bool
Returns true
if value
was set successfully, otherwise false
.