| 177 | } |
| 178 | |
| 179 | static int has_function(const char *name_pattern) { |
| 180 | char *resp = call_tool("search_graph", |
| 181 | "{\"project\":\"%s\",\"label\":\"Function\",\"name_pattern\":\"%s\"}", |
| 182 | g_project, name_pattern); |
| 183 | int total = count_in_response(resp, "total"); |
| 184 | free(resp); |
| 185 | return total > 0; |
| 186 | } |
| 187 | |
| 188 | static int count_by_label(const char *label) { |
| 189 | char *resp = |
no test coverage detected