baum

diff baum.h @ 10:0e15841ae111

s/list/stack/g because thats what it is
author meillo@marmaro.de
date Sat, 09 Feb 2008 16:49:29 +0100
parents c020b0d1cfca
children e2048e569891
line diff
     1.1 --- a/baum.h	Sat Feb 09 16:41:41 2008 +0100
     1.2 +++ b/baum.h	Sat Feb 09 16:49:29 2008 +0100
     1.3 @@ -21,7 +21,7 @@
     1.4  };
     1.5  
     1.6  
     1.7 -struct Listitem {
     1.8 +struct Stackitem {
     1.9  	struct Node* node;
    1.10 -	struct Listitem* next;
    1.11 +	struct Stackitem* next;
    1.12  };