baum

view baum.h @ 38:ff01f0f076e4

option_verbose is now global; stuff about warning when (expected) nodes are not there
author meillo@marmaro.de
date Sat, 01 Mar 2008 20:04:08 +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 };