baum

view 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
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 };