baum

view baum.h @ 58:f5f06d6f62b3

made Makefile much simpler (installs now to /usr/local)
author meillo@marmaro.de
date Wed, 25 Jun 2008 11:09:14 +0200
parents 22305a6e128d
children
line source
1 int option_verbose;
3 struct Node* newNode(char* name, unsigned char value);
4 struct Node* insertLast(struct Node* node, struct Node* insert);
5 struct Node* copyTree(struct Node* node);
7 unsigned char action(struct Node* node); /* in actions.c */
9 /* structs */
10 struct Node {
11 char name[256];
12 unsigned char value;
13 struct Node* down;
14 struct Node* right;
15 };