baum

view baum.h @ 39:96e2d58bc346

added new example program; added comments to example programs
author meillo@marmaro.de
date Sat, 01 Mar 2008 20:10:02 +0100
parents f0856c177403
children 1ad3d7305e5d
line source
1 int option_verbose;
3 void logit(char* text);
5 struct Node* newNode(char* name, unsigned char value);
6 struct Node* insertLast(struct Node* node, struct Node* insert);
9 /* structs */
10 struct Node {
11 char name[256];
12 unsigned char value;
13 struct Node* down;
14 struct Node* right;
15 };
17 struct Stackitem {
18 struct Node* node;
19 struct Stackitem* next;
20 };