| 5137 | } |
| 5138 | |
| 5139 | static void arch_bind_path_scope(sqlite3_stmt *stmt, int exact_idx, int like_idx, const char *norm, |
| 5140 | const char *like_pat) { |
| 5141 | bind_text(stmt, exact_idx, norm); |
| 5142 | bind_text(stmt, like_idx, like_pat); |
| 5143 | } |
| 5144 | |
| 5145 | bool cbm_store_arch_path_scoped(const char *path) { |
| 5146 | char norm[CBM_SZ_512]; |
no test coverage detected