| 4926 | } |
| 4927 | |
| 4928 | static void arch_bind_path_scope(sqlite3_stmt *stmt, int exact_idx, int like_idx, const char *norm, |
| 4929 | const char *like_pat) { |
| 4930 | bind_text(stmt, exact_idx, norm); |
| 4931 | bind_text(stmt, like_idx, like_pat); |
| 4932 | } |
| 4933 | |
| 4934 | bool cbm_store_arch_path_scoped(const char *path) { |
| 4935 | char norm[CBM_SZ_512]; |
no test coverage detected