baum

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 diff
     1.1 --- a/baum.h	Wed Feb 13 09:16:01 2008 +0100
     1.2 +++ b/baum.h	Wed Feb 13 09:57:07 2008 +0100
     1.3 @@ -10,7 +10,7 @@
     1.4  
     1.5  struct Node* nextNode(struct Node* node);
     1.6  struct Node* lastNode(struct Node* node);
     1.7 -void insertLast(struct Node* node, struct Node* insert);
     1.8 +struct Node* insertLast(struct Node* node, struct Node* insert);
     1.9  
    1.10  
    1.11  struct Node {