xref: /original-bsd/old/libndbm/dbm.h (revision 2d1688a5)
1f81e7e60Sbloom /*
2b9965555Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3b9965555Sbostic  * All rights reserved.
4f81e7e60Sbloom  *
5e36587ebSbostic  * %sccs.include.redist.c%
6b9965555Sbostic  *
7*2d1688a5Sbostic  *	@(#)dbm.h	5.5 (Berkeley) 03/12/91
8f81e7e60Sbloom  */
92db08fd1Ssam 
10f81e7e60Sbloom #ifndef NULL
11f81e7e60Sbloom /*
12f81e7e60Sbloom  * this is lunacy, we no longer use it (and never should have
13f81e7e60Sbloom  * unconditionally defined it), but, this whole file is for
14f81e7e60Sbloom  * backwards compatability - someone may rely on this.
15f81e7e60Sbloom  */
162db08fd1Ssam #define	NULL	((char *) 0)
17f81e7e60Sbloom #endif
182db08fd1Ssam 
19afc8513eSjak /*
20afc8513eSjak  * Pre-define the page block size to be the old dbm size.
21afc8513eSjak  */
22afc8513eSjak 
23afc8513eSjak #define PBLKSIZ 1024
24afc8513eSjak 
25*2d1688a5Sbostic #include "ndbm.h"
262db08fd1Ssam 
272db08fd1Ssam datum	fetch();
282db08fd1Ssam datum	firstkey();
292db08fd1Ssam datum	nextkey();
30