| 664 | return c; |
| 665 | } |
| 666 | cJSON *cJSON_GetObjectItem(cJSON *object, const char *string) { |
| 667 | cJSON *c = object->child; |
| 668 | while (c && cJSON_strcasecmp(c->string, string)) c = c->next; |
| 669 | return c; |
| 670 | } |
| 671 | |
| 672 | /* Utility for array list handling. */ |
| 673 | static void suffix_object(cJSON *prev, cJSON *item) { |
no test coverage detected