You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ken 22abc7086e Initial commit 4 years ago
..
Makefile.inc Initial commit 4 years ago
README Initial commit 4 years ago
extern.h Initial commit 4 years ago
hash.c Initial commit 4 years ago
hash.h Initial commit 4 years ago
hash_bigkey.c Initial commit 4 years ago
hash_buf.c Initial commit 4 years ago
hash_func.c Initial commit 4 years ago
hash_log2.c Initial commit 4 years ago
hash_page.c Initial commit 4 years ago
hsearch.c Initial commit 4 years ago
ndbm.c Initial commit 4 years ago
page.h Initial commit 4 years ago
search.h Initial commit 4 years ago
tags Initial commit 4 years ago

README

#	@(#)README	8.1 (Berkeley) 6/4/93

This package implements a superset of the hsearch and dbm/ndbm libraries.

Test Programs:
All test programs which need key/data pairs expect them entered
with key and data on separate lines

tcreat3.c
Takes
bucketsize (bsize),
fill factor (ffactor), and
initial number of elements (nelem).
Creates a hash table named hashtest containing the
keys/data pairs entered from standard in.
thash4.c
Takes
bucketsize (bsize),
fill factor (ffactor),
initial number of elements (nelem)
bytes of cache (ncached), and
file from which to read data (fname)
Creates a table from the key/data pairs on standard in and
then does a read of each key/data in fname
tdel.c
Takes
bucketsize (bsize), and
fill factor (ffactor).
file from which to read data (fname)
Reads each key/data pair from fname and deletes the
key from the hash table hashtest
tseq.c
Reads the key/data pairs in the file hashtest and writes them
to standard out.
trea