baum

view baum.h @ 26:f0856c177403

removed obsolete stuff; only relevant stuff is extern now; refactoring
author meillo@marmaro.de
date Tue, 19 Feb 2008 22:23:37 +0100
parents e2048e569891
children ff01f0f076e4
line source
2 void logit(char* text);
4 struct Node* newNode(char* name, unsigned char value);
5 struct Node* insertLast(struct Node* node, struct Node* insert);
8 /* structs */
9 struct Node {
10 char name[256];
11 unsigned char value;
12 struct Node* down;
13 struct Node* right;
14 };
16 struct Stackitem {
17 struct Node* node;
18 struct Stackitem* next;
19 };