baum

annotate baum.h @ 41:1ad3d7305e5d

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