baum

annotate baum.h @ 45:0b82169d4129

using fakeroot for creating the tarball; removed executable bit from some files
author meillo@marmaro.de
date Sat, 01 Mar 2008 21:49:41 +0100
parents 1ad3d7305e5d
children 22305a6e128d
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 };