Mercurial > baum
diff baum.h @ 41:1ad3d7305e5d
reduced output; cleanups
author | meillo@marmaro.de |
---|---|
date | Sat, 01 Mar 2008 20:35:00 +0100 |
parents | ff01f0f076e4 |
children | 0b82169d4129 |
line wrap: on
line diff
--- a/baum.h Sat Mar 01 20:15:20 2008 +0100 +++ b/baum.h Sat Mar 01 20:35:00 2008 +0100 @@ -1,7 +1,5 @@ int option_verbose; -void logit(char* text); - struct Node* newNode(char* name, unsigned char value); struct Node* insertLast(struct Node* node, struct Node* insert); @@ -13,8 +11,3 @@ struct Node* down; struct Node* right; }; - -struct Stackitem { - struct Node* node; - struct Stackitem* next; -};