| 3128 | } |
| 3129 | |
| 3130 | static void arch_bind_path_scope(sqlite3_stmt *stmt, int exact_idx, int like_idx, const char *norm, |
| 3131 | const char *like_pat) { |
| 3132 | bind_text(stmt, exact_idx, norm); |
| 3133 | bind_text(stmt, like_idx, like_pat); |
| 3134 | } |
| 3135 | |
| 3136 | bool cbm_store_arch_path_scoped(const char *path) { |
| 3137 | char norm[CBM_SZ_512]; |
no test coverage detected