| 5120 | } |
| 5121 | |
| 5122 | static void arch_bind_path_scope(sqlite3_stmt *stmt, int exact_idx, int like_idx, const char *norm, |
| 5123 | const char *like_pat) { |
| 5124 | bind_text(stmt, exact_idx, norm); |
| 5125 | bind_text(stmt, like_idx, like_pat); |
| 5126 | } |
| 5127 | |
| 5128 | bool cbm_store_arch_path_scoped(const char *path) { |
| 5129 | char norm[CBM_SZ_512]; |
no test coverage detected