view baum.h @ 44:bc693c51970d

updated TODO; minor stuff in debian/
author meillo@marmaro.de
date Sat, 01 Mar 2008 21:24:00 +0100
parents 1ad3d7305e5d
children 0b82169d4129
line wrap: on
line source

int option_verbose;

struct Node* newNode(char* name, unsigned char value);
struct Node* insertLast(struct Node* node, struct Node* insert);


/* structs */
struct Node {
	char name[256];
	unsigned char value;
	struct Node* down;
	struct Node* right;
};