7 /* standard dbm functions */
11 extern int delete(); /* not in dbz */
12 extern datum
firstkey(); /* not in dbz */
13 extern datum
nextkey(); /* not in dbz */
14 extern int dbmclose(); /* in dbz, but not in old dbm */
16 /* new stuff for dbz */
17 extern int dbzfresh();
18 extern int dbzagain();
19 extern datum
dbzfetch();
20 extern int dbzstore();
22 extern long dbzsize();
23 extern int dbzincore();
24 extern int dbzcancel();
25 extern int dbzdebug();
28 * In principle we could handle unlimited-length keys by operating a chunk
29 * at a time, but it's not worth it in practice. Setting a nice large
30 * bound on them simplifies the code and doesn't hurt anything.