Mercurial > baum
comparison baum.h @ 41:1ad3d7305e5d
reduced output; cleanups
author | meillo@marmaro.de |
---|---|
date | Sat, 01 Mar 2008 20:35:00 +0100 |
parents | ff01f0f076e4 |
children | 0b82169d4129 |
comparison
equal
deleted
inserted
replaced
40:5c13e29bc6fd | 41:1ad3d7305e5d |
---|---|
1 int option_verbose; | 1 int option_verbose; |
2 | |
3 void logit(char* text); | |
4 | 2 |
5 struct Node* newNode(char* name, unsigned char value); | 3 struct Node* newNode(char* name, unsigned char value); |
6 struct Node* insertLast(struct Node* node, struct Node* insert); | 4 struct Node* insertLast(struct Node* node, struct Node* insert); |
7 | 5 |
8 | 6 |
11 char name[256]; | 9 char name[256]; |
12 unsigned char value; | 10 unsigned char value; |
13 struct Node* down; | 11 struct Node* down; |
14 struct Node* right; | 12 struct Node* right; |
15 }; | 13 }; |
16 | |
17 struct Stackitem { | |
18 struct Node* node; | |
19 struct Stackitem* next; | |
20 }; |