|
Revision 5390, 382 bytes
(checked in by westram, 4 years ago)
|
|
- TAB-Ex
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | typedef struct hnode { |
|---|
| 2 | PART *part; |
|---|
| 3 | struct hnode *next; |
|---|
| 4 | } HNODE; |
|---|
| 5 | |
|---|
| 6 | struct gbs_hash_struct; |
|---|
| 7 | extern int Tree_count; |
|---|
| 8 | extern gbs_hash_struct *Name_hash; |
|---|
| 9 | #define HASH_MAX 123 |
|---|
| 10 | |
|---|
| 11 | void hash_print(void); |
|---|
| 12 | void hash_init(void); |
|---|
| 13 | void hash_settreecount(int tree_count); |
|---|
| 14 | void hash_free(void); |
|---|
| 15 | PART *hash_getpart(void); |
|---|
| 16 | void hash_insert(PART *part, int weight); |
|---|
| 17 | void build_sorted_list(void); |
|---|