| 153 | } |
| 154 | |
| 155 | static void cjson_minify_should_not_loop_infinitely(void) { |
| 156 | char string[] = { '8', ' ', '/', ' ', '5', '\n', '\0' }; |
| 157 | /* this should not be an infinite loop */ |
| 158 | cJSON_Minify(string); |
| 159 | } |
| 160 | |
| 161 | int CJSON_CDECL main(void) |
| 162 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…