blob: 0fb55b773b2280859e5b1a483e09fccd139827a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _RCC_DB4_H
#define _RCC_DB4_H
#include <db.h>
#include "rccstring.h"
struct db4_context_t {
DB_ENV *dbe;
DB *db;
rcc_db4_flags flags;
};
typedef struct db4_context_t db4_context_s;
typedef struct db4_context_t *db4_context;
db4_context rccDb4CreateContext(const char *dbpath, rcc_db4_flags flags);
void rccDb4FreeContext(db4_context ctx);
int rccDb4SetKey(db4_context ctx, const char *orig, size_t olen, const rcc_string string, size_t slen);
rcc_string rccDb4GetKey(db4_context ctx, const char *orig, size_t olen);
#endif /* _RCC_DB4_H */
|