| 1831 | } |
| 1832 | |
| 1833 | cjbool cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1834 | { |
| 1835 | return cJSON_GetObjectItem(object, string) ? 1 : 0; |
| 1836 | } |
| 1837 | |
| 1838 | /* Utility for array list handling. */ |
| 1839 | static void suffix_object(cJSON *prev, cJSON *item) |
nothing calls this directly
no test coverage detected