baum

view baum.h @ 41:1ad3d7305e5d

reduced output; cleanups
author meillo@marmaro.de
date Sat, 01 Mar 2008 20:35:00 +0100
parents ff01f0f076e4
children 0b82169d4129
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);
7 /* structs */
8 struct Node {
9 char name[256];
10 unsigned char value;
11 struct Node* down;
12 struct Node* right;
13 };