Quick Database Manager (QDBM) backend for the key/value Store. More...
#include "config.h"
#include <depot.h>
#include <stdbool.h>
#include <stddef.h>
#include <villa.h>
#include "mutt/lib.h"
#include "lib.h"
Go to the source code of this file.
Functions | |
static StoreHandle * | store_qdbm_open (const char *path, bool create) |
Open a connection to a Store - Implements StoreOps::open() -. | |
static void * | store_qdbm_fetch (StoreHandle *store, const char *key, size_t klen, size_t *vlen) |
Fetch a Value from the Store - Implements StoreOps::fetch() -. | |
static void | store_qdbm_free (StoreHandle *store, void **ptr) |
Free a Value returned by fetch() - Implements StoreOps::free() -. | |
static int | store_qdbm_store (StoreHandle *store, const char *key, size_t klen, void *value, size_t vlen) |
Write a Value to the Store - Implements StoreOps::store() -. | |
static int | store_qdbm_delete_record (StoreHandle *store, const char *key, size_t klen) |
Delete a record from the Store - Implements StoreOps::delete_record() -. | |
static void | store_qdbm_close (StoreHandle **ptr) |
Close a Store connection - Implements StoreOps::close() -. | |
static const char * | store_qdbm_version (void) |
Get a Store version string - Implements StoreOps::version() -. | |
Quick Database Manager (QDBM) backend for the key/value Store.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file qdbm.c.