Invoke print_string_ptr (which is useful) on an item. */
| 950 | |
| 951 | /* Invoke print_string_ptr (which is useful) on an item. */ |
| 952 | static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) |
| 953 | { |
| 954 | return print_string_ptr((unsigned char*)item->valuestring, p); |
| 955 | } |
| 956 | |
| 957 | /* Predeclare these prototypes. */ |
| 958 | static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer); |
no test coverage detected