log
graph
tags
branches
changeset
browse
file
latest
diff
annotate
file log
raw
help
baum
view baum.h @ 1:3da0ff17c8e7
find changesets by author, revision, files, or words in the commit message
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 source
1
struct Node {
2
char* name;
3
char value;
4
struct Node* down;
5
struct Node* right;
6
};
7
8