baum

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