Invoke print_string_ptr (which is useful) on an item. */
| 1031 | |
| 1032 | /* Invoke print_string_ptr (which is useful) on an item. */ |
| 1033 | static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) |
| 1034 | { |
| 1035 | return print_string_ptr((unsigned char*)item->valuestring, p); |
| 1036 | } |
| 1037 | |
| 1038 | /* Predeclare these prototypes. */ |
| 1039 | static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer); |
no test coverage detected