Last change
on this file was
5390,
checked in by westram, 16 years ago
|
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
443 bytes
|
Line | |
---|
1 | struct nsons; |
---|
2 | |
---|
3 | typedef struct nt_node { |
---|
4 | PART *part; |
---|
5 | struct nsons *son_list; |
---|
6 | } NT_NODE; |
---|
7 | |
---|
8 | |
---|
9 | typedef struct nsons { |
---|
10 | NT_NODE *node; |
---|
11 | nsons *prev, *next; |
---|
12 | } NSONS; |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | NT_NODE *new_ntnode(PART *p); |
---|
17 | void del_tree(NT_NODE *tree); |
---|
18 | void ntree_init(void); |
---|
19 | int ntree_cont(int len); |
---|
20 | void insert_ntree(PART *part); |
---|
21 | NT_NODE *ntree_get(void); |
---|
22 | void print_ntindex(NT_NODE *tree); |
---|
23 | void print_ntree(NT_NODE *tree); |
---|
Note: See
TracBrowser
for help on using the repository browser.