/*
// ColdMUD was created and is copyright 1993, 1994 by Greg Hudson
//
// ColdX is a derivitive work, and is copyright 1995 by the ColdX Project.
// Full copyright information can be found in the file doc/CREDITS
//
// File:        db.h
// Version:     0.1-5
// Last Edited: 18 May 1995
//
// ---
//
// Declarations for dbm chunking routines.
*/

#ifndef DBMCHUNK_H
#define DBMCHUNK_H
#include "object.h"

int init_db(void);
int db_get(Object *object, long name);
int db_put(Object *object, long name);
int db_check(long name);
int db_del(long name);
char *db_traverse_first(void);
char *db_traverse_next(void);
int db_backup(char *out);
void db_close(void);
void db_flush(void);

#endif