Get Array size/item / object item. */
| 801 | |
| 802 | /* Get Array size/item / object item. */ |
| 803 | int cJSON_GetArraySize(cJSON *array) |
| 804 | { |
| 805 | cJSON *c = array->child; |
| 806 | int i = 0; |
| 807 | while (c) |
| 808 | i++, c = c->next; |
| 809 | return i; |
| 810 | } |
| 811 | cJSON *cJSON_GetArrayItem(cJSON *array, int item) |
| 812 | { |
| 813 | cJSON *c = array->child; |
no outgoing calls
no test coverage detected