diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/baum.h	Thu Feb 07 14:31:02 2008 +0100
@@ -0,0 +1,8 @@
+struct Node {
+	char* name;
+	char value;
+	struct Node* down;
+	struct Node* right;
+};
+
+