| 1914 | } |
| 1915 | |
| 1916 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1917 | { |
| 1918 | return cJSON_GetObjectItem(object, string) ? 1 : 0; |
| 1919 | } |
| 1920 | |
| 1921 | /* Utility for array list handling. */ |
| 1922 | static void suffix_object(cJSON *prev, cJSON *item) |
nothing calls this directly
no test coverage detected