annotate actions.h @ 16:b62288419c1c

added README and LICENSE; changed error code of invalid node
author meillo@marmaro.de
date Wed, 13 Feb 2008 20:33:39 +0100
parents c202ccccedb5
children f0856c177403
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
557fa4df2bcd added difference between char and number
meillo@marmaro.de
parents:
diff changeset
1
3
15d7d6b9766f added input; added nextNode, lastNode, insertLast
meillo@marmaro.de
parents: 2
diff changeset
2 unsigned char action(struct Node* node);
2
557fa4df2bcd added difference between char and number
meillo@marmaro.de
parents:
diff changeset
3
3
15d7d6b9766f added input; added nextNode, lastNode, insertLast
meillo@marmaro.de
parents: 2
diff changeset
4 unsigned char action_print(struct Node* node);
15d7d6b9766f added input; added nextNode, lastNode, insertLast
meillo@marmaro.de
parents: 2
diff changeset
5 unsigned char action_sum(struct Node* node);
15d7d6b9766f added input; added nextNode, lastNode, insertLast
meillo@marmaro.de
parents: 2
diff changeset
6 unsigned char action_number(struct Node* node);
15d7d6b9766f added input; added nextNode, lastNode, insertLast
meillo@marmaro.de
parents: 2
diff changeset
7 unsigned char action_input(struct Node* node);
5
c202ccccedb5 added checks for null pointer; print echoes as char or number now (depends on value); all logging goes to stderr now; new nodes blackhole and times (not implemented yet)
meillo@marmaro.de
parents: 3
diff changeset
8 unsigned char action_times(struct Node* node);
c202ccccedb5 added checks for null pointer; print echoes as char or number now (depends on value); all logging goes to stderr now; new nodes blackhole and times (not implemented yet)
meillo@marmaro.de
parents: 3
diff changeset
9 unsigned char action_blackhole(struct Node* node);
2
557fa4df2bcd added difference between char and number
meillo@marmaro.de
parents:
diff changeset
10