baum

diff baum.h @ 46:22305a6e128d

added deep copy and fixed so node times
author meillo@marmaro.de
date Sun, 02 Mar 2008 10:29:55 +0100
parents 0b82169d4129
children c31b5bb6d493
line diff
     1.1 --- a/baum.h	Sat Mar 01 21:49:41 2008 +0100
     1.2 +++ b/baum.h	Sun Mar 02 10:29:55 2008 +0100
     1.3 @@ -2,6 +2,7 @@
     1.4  
     1.5  struct Node* newNode(char* name, unsigned char value);
     1.6  struct Node* insertLast(struct Node* node, struct Node* insert);
     1.7 +struct Node* copyTree(struct Node* node);
     1.8  
     1.9  
    1.10  /* structs */