view baum.h @ 1:3da0ff17c8e7

added features (print, sum, number); split in header file
author meillo@marmaro.de
date Thu, 07 Feb 2008 14:31:02 +0100
parents
children 557fa4df2bcd
line wrap: on
line source

struct Node {
	char* name;
	char value;
	struct Node* down;
	struct Node* right;
};