baum

view baum.h @ 60:be637b2ea482

Added tag 0.4 for changeset 7adeee76ce3e
author meillo@marmaro.de
date Wed, 25 Jun 2008 11:11:10 +0200
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 };