view baum.h @ 32:3903effae5ef 0.2

new debian package
author meillo@marmaro.de
date Fri, 22 Feb 2008 15:58:25 +0100
parents f0856c177403
children ff01f0f076e4
line wrap: on
line source


void logit(char* text);

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

struct Stackitem {
	struct Node* node;
	struct Stackitem* next;
};