baum

annotate baum.h @ 62:80df58d240b2

merge
author meillo@marmaro.de
date Thu, 13 Nov 2008 13:19:42 +0100
parents 22305a6e128d
children
rev   line source
meillo@38 1 int option_verbose;
meillo@2 2
meillo@3 3 struct Node* newNode(char* name, unsigned char value);
meillo@15 4 struct Node* insertLast(struct Node* node, struct Node* insert);
meillo@46 5 struct Node* copyTree(struct Node* node);
meillo@2 6
meillo@47 7 unsigned char action(struct Node* node); /* in actions.c */
meillo@2 8
meillo@26 9 /* structs */
meillo@1 10 struct Node {
meillo@9 11 char name[256];
meillo@3 12 unsigned char value;
meillo@1 13 struct Node* down;
meillo@1 14 struct Node* right;
meillo@1 15 };