baum

view 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
line source
2 void logit(char* text);
6 struct Node {
7 char* name;
8 char value;
9 struct Node* down;
10 struct Node* right;
11 };