diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -17,6 +17,7 @@ #include "foci.h" #include <ctype.h> +#include <stdbool.h> #include <stdio.h> #include <string.h> @@ -55,6 +56,7 @@ int main() *s++ = c; c = getchar(); } while (isgraph(c)); + bool eol = c == '\n' || c == '\r'; *s = '\0'; if (strcmp(buf, "bye") == 0) @@ -62,7 +64,8 @@ int main() parse_word(buf, s); - printf(compiling() ? "compiled <%d>\n" : "ok <%d>\n", depth()); + if (eol) + printf(compiling() ? "compiled <%d>\n" : "ok <%d>\n", depth()); } return 0; |