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