aboutsummaryrefslogtreecommitdiff
path: root/Converter/src
diff options
context:
space:
mode:
Diffstat (limited to 'Converter/src')
-rw-r--r--Converter/src/main.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/Converter/src/main.c b/Converter/src/main.c
index fbcd938..f9c96a3 100644
--- a/Converter/src/main.c
+++ b/Converter/src/main.c
@@ -24,12 +24,19 @@ int main(int argc, char *argv[])
else
{
+ int i;
+ char *buf;
while (1)
{
+
printf("> ");
- char *buf = malloc(sizeof(*buf) * 1024);
+ buf = malloc(sizeof(*buf) * 1024);
fgets(buf, 1024, stdin);
- string output = (compile_line(buf, 1024, "<stdin>"));
+
+ for (i = 0; buf[i] != '\n'; ++i) continue;
+ buf[i] = '\0'; // terminate
+
+ string output = (compile_line(buf, strlen(buf), "<stdin>"));
puts(output);
free(output);
}