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 diff
     1.1 --- a/baum.h	Sat Mar 01 20:15:20 2008 +0100
     1.2 +++ b/baum.h	Sat Mar 01 20:35:00 2008 +0100
     1.3 @@ -1,7 +1,5 @@
     1.4  int option_verbose;
     1.5  
     1.6 -void logit(char* text);
     1.7 -
     1.8  struct Node* newNode(char* name, unsigned char value);
     1.9  struct Node* insertLast(struct Node* node, struct Node* insert);
    1.10  
    1.11 @@ -13,8 +11,3 @@
    1.12  	struct Node* down;
    1.13  	struct Node* right;
    1.14  };
    1.15 -
    1.16 -struct Stackitem {
    1.17 -	struct Node* node;
    1.18 -	struct Stackitem* next;
    1.19 -};