comparison 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
comparison
equal deleted inserted replaced
45:0b82169d4129 46:22305a6e128d
1 int option_verbose; 1 int option_verbose;
2 2
3 struct Node* newNode(char* name, unsigned char value); 3 struct Node* newNode(char* name, unsigned char value);
4 struct Node* insertLast(struct Node* node, struct Node* insert); 4 struct Node* insertLast(struct Node* node, struct Node* insert);
5 struct Node* copyTree(struct Node* node);
5 6
6 7
7 /* structs */ 8 /* structs */
8 struct Node { 9 struct Node {
9 char name[256]; 10 char name[256];