37 lines
817 B
C
37 lines
817 B
C
/*
|
|
* $Id: hash.h,v 1.7 2005-05-19 15:04:21 bacon Exp $
|
|
*/
|
|
|
|
#ifndef _XP_STX_HASH_H_
|
|
#define _XP_STX_HASH_H_
|
|
|
|
#include <xp/stx/stx.h>
|
|
|
|
#define XP_STX_PAIRLINK_SIZE 3
|
|
#define XP_STX_PAIRLINK_LINK 0
|
|
#define XP_STX_PAIRLINK_KEY 1
|
|
#define XP_STX_PAIRLINK_VALUE 2
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
|
|
/* hash table manipulation */
|
|
xp_stx_word_t xp_stx_new_plink (
|
|
xp_stx_t* stx, xp_stx_word_t key, xp_stx_word_t value);
|
|
xp_stx_word_t xp_stx_hash_lookup (
|
|
xp_stx_t* stx, xp_stx_word_t table,
|
|
xp_stx_word_t hash, xp_stx_word_t key);
|
|
void xp_stx_hash_insert (
|
|
xp_stx_t* stx, xp_stx_word_t table,
|
|
xp_stx_word_t hash, xp_stx_word_t key, xp_stx_word_t value);
|
|
void xp_stx_hash_traverse (
|
|
xp_stx_t* stx, xp_stx_word_t table,
|
|
void (*func) (xp_stx_t*,xp_stx_word_t));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|