| 758 | } |
| 759 | |
| 760 | cbm_store_t *cbm_store_open_path(const char *db_path) { |
| 761 | if (!db_path) { |
| 762 | return NULL; |
| 763 | } |
| 764 | return store_open_internal(db_path, false, true); |
| 765 | } |
| 766 | |
| 767 | cbm_store_t *cbm_store_open_path_existing(const char *db_path) { |
| 768 | if (!db_path) { |