summaryrefslogtreecommitdiffstats
path: root/server/cdb.h
blob: 0da14dfaa54063aa9e1128245d1bc0f81a5603cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* $Id: cdb.h,v 1.11 2000/05/17 19:32:58 shmit Exp $ */

#ifndef CDB_H
#define CDB_H

#include "array.h"

int cdb_new();
int cdb_get(const char *key, int keylen, array_t *dstarr);
void cdb_periodic();

int cdb_stats(array_t *statarr);
void cdb_collate();

#endif