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