| 3140 | } |
| 3141 | |
| 3142 | bool cbm_store_normalize_arch_path(const char *path, char *norm_out, size_t norm_sz) { |
| 3143 | char like[CBM_SZ_512 + 4]; |
| 3144 | return arch_path_prepare(path, norm_out, norm_sz, like, sizeof(like)); |
| 3145 | } |
| 3146 | |
| 3147 | int cbm_store_count_nodes_scoped(cbm_store_t *s, const char *project, const char *path) { |
| 3148 | if (!s || !s->db || !project) { |
no test coverage detected