| 5027 | } |
| 5028 | |
| 5029 | static void arch_bind_path_scope(sqlite3_stmt *stmt, int exact_idx, int like_idx, const char *norm, |
| 5030 | const char *like_pat) { |
| 5031 | bind_text(stmt, exact_idx, norm); |
| 5032 | bind_text(stmt, like_idx, like_pat); |
| 5033 | } |
| 5034 | |
| 5035 | bool cbm_store_arch_path_scoped(const char *path) { |
| 5036 | char norm[CBM_SZ_512]; |
no test coverage detected