1N/A/*
1N/A * sdbm - ndbm work-alike hashed database library
1N/A * tuning and portability constructs [not nearly enough]
1N/A * author: oz@nexus.yorku.ca
1N/A */
1N/A
1N/A#define BYTESIZ 8
1N/A
1N/A/*
1N/A * important tuning parms (hah)
1N/A */
1N/A
1N/A#define SEEDUPS /* always detect duplicates */
1N/A#define BADMESS /* generate a message for worst case:
1N/A cannot make room after SPLTMAX splits */
1N/A/*
1N/A * misc
1N/A */
1N/A#ifdef DEBUG
1N/A#define debug(x) printf x
1N/A#else
1N/A#define debug(x)
1N/A#endif