| 5149 | } |
| 5150 | |
| 5151 | bool cbm_store_normalize_arch_path(const char *path, char *norm_out, size_t norm_sz) { |
| 5152 | char like[CBM_SZ_512 + 4]; |
| 5153 | return arch_path_prepare(path, norm_out, norm_sz, like, sizeof(like)); |
| 5154 | } |
| 5155 | |
| 5156 | int cbm_store_count_nodes_scoped(cbm_store_t *s, const char *project, const char *path) { |
| 5157 | if (!s || !s->db || !project) { |
no test coverage detected