| 2782 | cJSON * cJSON_Duplicate_rec(const cJSON *item, size_t depth, cJSON_bool recurse); |
| 2783 | |
| 2784 | CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse) |
| 2785 | { |
| 2786 | return cJSON_Duplicate_rec(item, 0, recurse ); |
| 2787 | } |
| 2788 | |
| 2789 | cJSON * cJSON_Duplicate_rec(const cJSON *item, size_t depth, cJSON_bool recurse) |
| 2790 | { |
nothing calls this directly
no test coverage detected