source: tags/arb_5.0/CONSENSUS_TREE/CT_ntree.hxx

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