| 85 | /* AUTOGENERATED MOCKS END */ |
| 86 | |
| 87 | static void example2(const char *comment, bool valid, |
| 88 | const char *str, bool final) |
| 89 | { |
| 90 | printf("{\n"); |
| 91 | printf("\"comment\": \"%s\",\n", comment); |
| 92 | printf("\"valid\": %s,\n", valid ? "true": "false"); |
| 93 | printf("\"string\": \"%s\"\n", str); |
| 94 | printf("}%s\n", final ? "" : ","); |
| 95 | } |
| 96 | |
| 97 | static void example(const char *comment, bool valid, const char *str) |
| 98 | { |
no outgoing calls
no test coverage detected