diff options
Diffstat (limited to 'Converter/src/main.c')
-rw-r--r-- | Converter/src/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Converter/src/main.c b/Converter/src/main.c index f9c96a3..7b64749 100644 --- a/Converter/src/main.c +++ b/Converter/src/main.c @@ -11,17 +11,18 @@ int main(int argc, char *argv[]) if (strncmp(argv[1], "--test", 7) == 0) { // run tests - fputs("Running header test (how does compile_string handle # headers?)\n", stderr); + fputs("Running header test (how does compile_string handle # headers?)\n", + stderr); test_compile_line_header_depth(); } else { - string output = (compile_line(argv[1], strnlen(argv[1], 1024), "<stdin>")); + string output = + (compile_line(argv[1], strnlen(argv[1], 1024), "<stdin>")); puts(output); free(output); } } - else { int i; |