• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D02-Jun-2007245 85

Makefile.inH A D02-Jun-20073 KiB10961

READMEH A D02-Jun-2007947 2518

config.h.inH A D02-Jun-20072.5 KiB9665

configureH A D02-Jun-2007213.9 KiB7,4776,492

configure.inH A D02-Jun-20074.7 KiB158137

dep.makH A D02-Jun-2007666 1413

hashtbl.cH A D02-Jun-20075.5 KiB218138

hashtbl.hH A D02-Jun-20072 KiB6427

hashtest.cH A D02-Jun-20073.4 KiB141105

hforeach.cH A D02-Jun-20071.8 KiB6736

hfree.cH A D02-Jun-20072.2 KiB8551

hgrow.cH A D02-Jun-20073.3 KiB12182

hgrow.hH A D02-Jun-2007946 286

hhash.cH A D02-Jun-20071.6 KiB6230

hhash.hH A D02-Jun-2007882 264

leakfind.hH A D02-Jun-2007954 298

stdint.h.inH A D02-Jun-20071.5 KiB4938

README

1			hashtbl version 2.00
2			  -----------------
3
4hashtbl is a standalone library adapted for use with integrit,
5Copyright (c) 2001, 2002 Ed L Cashin.
6
7You can make a test program, hash test, by issuing the command, "make
8hashtest".  The hashtest runs slow because printing to the terminal is
9slow, but also because it starts out with a very small capacity so as
10to exercise the resizing parts of hashtbl.  You'd normally start with
11a guesstimate of the capacity you'll really need.
12
13Use libhashtbl in your programs by including "hashtbl.h", calling the
14functions prototyped in hashtbl.h, and linking with "-lhashtbl".  The
15library has to be in the places the compiler looks.
16
17You can run "make install" to make libhashtbl available on your
18system.  You can also tell the compiler where to look with an option
19(e.g., "-L/my/dir" for gcc.  See your compiler's docs).
20
21I welcome feedback!
22
23Ed L Cashin <ecashin@users.sourceforge.net>
24January 2001
25