| 151 | /* ── Helpers ────────────────────────────────────────────────────── */ |
| 152 | |
| 153 | static void store_set_error(cbm_store_t *s, const char *msg) { |
| 154 | snprintf(s->errbuf, sizeof(s->errbuf), "%s", msg); |
| 155 | } |
| 156 | |
| 157 | static void store_set_error_sqlite(cbm_store_t *s, const char *prefix) { |
| 158 | snprintf(s->errbuf, sizeof(s->errbuf), "%s: %s", prefix, sqlite3_errmsg(s->db)); |
no outgoing calls
no test coverage detected