Mercurial > baum
diff actions.c @ 48:f9fc4c4f9e3d 0.3
documented nodes in man page
author | meillo@marmaro.de |
---|---|
date | Sun, 02 Mar 2008 11:04:52 +0100 |
parents | c31b5bb6d493 |
children | 0870e261bf28 |
line wrap: on
line diff
--- a/actions.c Sun Mar 02 10:34:09 2008 +0100 +++ b/actions.c Sun Mar 02 11:04:52 2008 +0100 @@ -74,13 +74,11 @@ unsigned char action_input(struct Node* node) { - /* reads a number which is treated as ASCII value */ int input; printf("input: "); scanf("%d", &input); input = input % 256; insertLast(node, newNode("number", (char) input)); - return 0; }