summaryrefslogtreecommitdiffstats
path: root/nserver/src/db.h
blob: 68af98ec0170a709f4c601e52ea2d976cf7ea2a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);

#endif