baum

diff actions.h @ 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)
author meillo@marmaro.de
date Fri, 08 Feb 2008 20:45:17 +0100
parents 15d7d6b9766f
children f0856c177403
line diff
     1.1 --- a/actions.h	Thu Feb 07 18:05:03 2008 +0100
     1.2 +++ b/actions.h	Fri Feb 08 20:45:17 2008 +0100
     1.3 @@ -2,8 +2,9 @@
     1.4  unsigned char action(struct Node* node);
     1.5  
     1.6  unsigned char action_print(struct Node* node);
     1.7 -unsigned char action_printchar(struct Node* node);
     1.8  unsigned char action_sum(struct Node* node);
     1.9  unsigned char action_number(struct Node* node);
    1.10  unsigned char action_input(struct Node* node);
    1.11 +unsigned char action_times(struct Node* node);
    1.12 +unsigned char action_blackhole(struct Node* node);
    1.13