view baum.h @ 30:cd979b979610

fixed multiple (un)indentions in read_input; some better comments
author meillo@marmaro.de
date Fri, 22 Feb 2008 14:47:47 +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;
};