| 159 | } |
| 160 | |
| 161 | static int get_edge_count(void) { |
| 162 | cbm_store_t *s = open_store(); |
| 163 | if (!s) |
| 164 | return -1; |
| 165 | int c = cbm_store_count_edges(s, g_project); |
| 166 | cbm_store_close(s); |
| 167 | return c; |
| 168 | } |
| 169 | |
| 170 | static int get_edge_count_by_type(const char *type) { |
| 171 | cbm_store_t *s = open_store(); |
no test coverage detected