| 1816 | } |
| 1817 | |
| 1818 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1819 | { |
| 1820 | return cJSON_GetObjectItem(object, string) ? 1 : 0; |
| 1821 | } |
| 1822 | |
| 1823 | /* Utility for array list handling. */ |
| 1824 | static void suffix_object(cJSON *prev, cJSON *item) |
nothing calls this directly
no test coverage detected