# HG changeset patch # User meillo@marmaro.de # Date 1202890561 -3600 # Node ID 15e11eea1c66b0035d73e969baeb3a1151f27225 # Parent bf660b45bba99190c3ec34d69769ec0774a69a8c input says now that it wants an input diff -r bf660b45bba9 -r 15e11eea1c66 actions.c --- a/actions.c Wed Feb 13 09:13:02 2008 +0100 +++ b/actions.c Wed Feb 13 09:16:01 2008 +0100 @@ -74,6 +74,7 @@ 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));