summaryrefslogtreecommitdiffstats
path: root/nserver/src/db.h
blob: 1a9c243c81708f47bb53003fe709bb932348ae28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _db_h
#define _db_h

#include <gdbm.h>
#include <dbg.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>

int db_init();
int db_store(char *key, char *value);
char *db_load(char *key);

#endif