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 wrap: on
line diff
--- a/baum.h	Sat Feb 09 16:41:41 2008 +0100
+++ b/baum.h	Sat Feb 09 16:49:29 2008 +0100
@@ -21,7 +21,7 @@
 };
 
 
-struct Listitem {
+struct Stackitem {
 	struct Node* node;
-	struct Listitem* next;
+	struct Stackitem* next;
 };