comparison baum.h @ 2:557fa4df2bcd

added difference between char and number
author meillo@marmaro.de
date Thu, 07 Feb 2008 14:46:27 +0100
parents 3da0ff17c8e7
children 15d7d6b9766f
comparison
equal deleted inserted replaced
1:3da0ff17c8e7 2:557fa4df2bcd
1
2 void logit(char* text);
3
4
5
1 struct Node { 6 struct Node {
2 char* name; 7 char* name;
3 char value; 8 char value;
4 struct Node* down; 9 struct Node* down;
5 struct Node* right; 10 struct Node* right;