1*26947Sbloom /* 2*26947Sbloom * Copyright (c) 1980 Regents of the University of California. 3*26947Sbloom * All rights reserved. The Berkeley software License Agreement 4*26947Sbloom * specifies the terms and conditions for redistribution. 5*26947Sbloom * 6*26947Sbloom * @(#)dbm.h 5.1 (Berkeley) 03/27/86 7*26947Sbloom */ 812182Ssam 9*26947Sbloom #ifndef NULL 10*26947Sbloom /* 11*26947Sbloom * this is lunacy, we no longer use it (and never should have 12*26947Sbloom * unconditionally defined it), but, this whole file is for 13*26947Sbloom * backwards compatability - someone may rely on this. 14*26947Sbloom */ 1512182Ssam #define NULL ((char *) 0) 16*26947Sbloom #endif 1712182Ssam 18*26947Sbloom #include <ndbm.h> 1912182Ssam 2012182Ssam datum fetch(); 2112182Ssam datum firstkey(); 2212182Ssam datum nextkey(); 23*26947Sbloom #if 0 24*26947Sbloom datum makdatum(); 2512182Ssam datum firsthash(); 2612182Ssam long calchash(); 2712182Ssam long hashinc(); 28*26947Sbloom #endif 29