| 822 | return c; |
| 823 | } |
| 824 | cJSON *cJSON_GetObjectItem(cJSON *object, const char *string) |
| 825 | { |
| 826 | cJSON *c = object->child; |
| 827 | while (c && cJSON_strcasecmp(c->string, string)) |
| 828 | c = c->next; |
| 829 | return c; |
| 830 | } |
| 831 | |
| 832 | /* Utility for array list handling. */ |
| 833 | static void suffix_object(cJSON *prev, cJSON *item) |
no test coverage detected