st.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* This is a public domain general purpose hash table package written by Peter Moore @ UCB. */
  2. /* @(#) st.h 5.1 89/12/14 */
  3. #ifndef ST_INCLUDED
  4. #define ST_INCLUDED
  5. #ifdef _WIN32
  6. # include <windows.h>
  7. typedef ULONG_PTR st_data_t;
  8. #else
  9. typedef unsigned long st_data_t;
  10. #endif
  11. #define ST_DATA_T_DEFINED
  12. typedef struct st_table st_table;
  13. struct st_hash_type {
  14. int (*compare)();
  15. int (*hash)();
  16. };
  17. struct st_table {
  18. struct st_hash_type *type;
  19. int num_bins;
  20. int num_entries;
  21. struct st_table_entry **bins;
  22. };
  23. #define st_is_member(table,key) st_lookup(table,key,(st_data_t *)0)
  24. enum st_retval {ST_CONTINUE, ST_STOP, ST_DELETE, ST_CHECK};
  25. #ifndef _
  26. # define _(args) args
  27. #endif
  28. #ifndef ANYARGS
  29. # ifdef __cplusplus
  30. # define ANYARGS ...
  31. # else
  32. # define ANYARGS
  33. # endif
  34. #endif
  35. st_table *st_init_table _((struct st_hash_type *));
  36. st_table *st_init_table_with_size _((struct st_hash_type *, int));
  37. st_table *st_init_numtable _((void));
  38. st_table *st_init_numtable_with_size _((int));
  39. st_table *st_init_strtable _((void));
  40. st_table *st_init_strtable_with_size _((int));
  41. int st_delete _((st_table *, st_data_t *, st_data_t *));
  42. int st_delete_safe _((st_table *, st_data_t *, st_data_t *, st_data_t));
  43. int st_insert _((st_table *, st_data_t, st_data_t));
  44. int st_lookup _((st_table *, st_data_t, st_data_t *));
  45. int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
  46. void st_add_direct _((st_table *, st_data_t, st_data_t));
  47. void st_free_table _((st_table *));
  48. void st_cleanup_safe _((st_table *, st_data_t));
  49. st_table *st_copy _((st_table *));
  50. #define ST_NUMCMP ((int (*)()) 0)
  51. #define ST_NUMHASH ((int (*)()) -2)
  52. #define st_numcmp ST_NUMCMP
  53. #define st_numhash ST_NUMHASH
  54. #endif /* ST_INCLUDED */