Get Array size/item / object item. */
| 807 | |
| 808 | /* Get Array size/item / object item. */ |
| 809 | int cJSON_GetArraySize(cJSON *array) |
| 810 | { |
| 811 | cJSON *c = array->child; |
| 812 | int i = 0; |
| 813 | while (c) |
| 814 | i++, c = c->next; |
| 815 | return i; |
| 816 | } |
| 817 | cJSON *cJSON_GetArrayItem(cJSON *array, int item) |
| 818 | { |
| 819 | cJSON *c = array->child; |
no outgoing calls
no test coverage detected