summaryrefslogtreecommitdiff
path: root/hashtable.c
Commit message (Collapse)AuthorAgeFilesLines
* Avoid type-punned compiler warnings for the byteorder.h macrosWayne Davison2009-10-131-1/+1
| | | | by using inline functions for the 4-char <-> uint32 conversions.
* Update the copyright year.Wayne Davison2009-01-031-1/+1
|
* Adding hashtable debugging output (--debug=hash).Wayne Davison2008-10-151-1/+20
|
* Explicitly cast an int64 to an int32.Wayne Davison2008-07-211-1/+1
|
* Added some HLINK debugging output and enabled it for hardlink tests.Wayne Davison2008-07-171-1/+1
|
* Improved handling of a system that doesn't have a 64-bit offset type.Wayne Davison2008-06-041-0/+2
|
* Include 2008 in the copyright years.Wayne Davison2008-03-011-1/+1
|
* Store the key64 flag from hashtable_create() in the hashtable structureWayne Davison2008-02-041-2/+3
| | | | | so that hashtable_find() knows which hashtable is which on a 64-bit architecture.
* The hashtable routines from hlink.c modified to have more generic names,Wayne Davison2007-09-031-0/+145
to support 2 sizes of key (32 and 64 bits), and to have a non-allocating option for the find routine (returning NULL for no match).