comparison baum.h @ 47:c31b5bb6d493

merged header files into only one (removed actions.h)
author meillo@marmaro.de
date Sun, 02 Mar 2008 10:34:09 +0100
parents 22305a6e128d
children
comparison
equal deleted inserted replaced
46:22305a6e128d 47:c31b5bb6d493
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 struct Node* copyTree(struct Node* node);
6 6
7 unsigned char action(struct Node* node); /* in actions.c */
7 8
8 /* structs */ 9 /* structs */
9 struct Node { 10 struct Node {
10 char name[256]; 11 char name[256];
11 unsigned char value; 12 unsigned char value;