diff baum.h @ 15:e2048e569891

insertLast returns now new inserted node; very dumb implementation for action_times
author meillo@marmaro.de
date Wed, 13 Feb 2008 09:57:07 +0100
parents 0e15841ae111
children f0856c177403
line wrap: on
line diff
--- a/baum.h	Wed Feb 13 09:16:01 2008 +0100
+++ b/baum.h	Wed Feb 13 09:57:07 2008 +0100
@@ -10,7 +10,7 @@
 
 struct Node* nextNode(struct Node* node);
 struct Node* lastNode(struct Node* node);
-void insertLast(struct Node* node, struct Node* insert);
+struct Node* insertLast(struct Node* node, struct Node* insert);
 
 
 struct Node {