baum

view baum.h @ 62:80df58d240b2

merge
author meillo@marmaro.de
date Thu, 13 Nov 2008 13:19:42 +0100
parents 22305a6e128d
children
line source
1 int option_verbose;
3 struct Node* newNode(char* name, unsigned char value);
4 struct Node* insertLast(struct Node* node, struct Node* insert);
5 struct Node* copyTree(struct Node* node);
7 unsigned char action(struct Node* node); /* in actions.c */
9 /* structs */
10 struct Node {
11 char name[256];
12 unsigned char value;
13 struct Node* down;
14 struct Node* right;
15 };