| 764 | } |
| 765 | |
| 766 | cbm_store_t *cbm_store_open_path_existing(const char *db_path) { |
| 767 | if (!db_path) { |
| 768 | return NULL; |
| 769 | } |
| 770 | return store_open_internal(db_path, false, false); |
| 771 | } |
| 772 | |
| 773 | const char *cbm_store_db_path(const cbm_store_t *s) { |
| 774 | return s ? s->db_path : NULL; |