root/branches/append/server/assoc.h

Revision 509, 296 bytes (checked in by sgrimm, 3 years ago)

Merge multithreaded into trunk, commit #2 (first commit only did the
new files, not the modified ones.)

Line 
1/* associative array */
2void assoc_init(void);
3item *assoc_find(const char *key, const size_t nkey);
4int assoc_insert(item *item);
5void assoc_delete(const char *key, const size_t nkey);
6void do_assoc_move_next_bucket(void);
7uint32_t hash( const void *key, size_t length, const uint32_t initval);
Note: See TracBrowser for help on using the browser.