Simplify a bit a print helper function.
[TP_AL_C.git] / lexer / print_helper.c
index f7ab04ffb9887b2e2fbdf5d96ea06b6016ca509c..630985be4a8331b5f5147b21e084b03d10aab720 100644 (file)
@@ -1,7 +1,7 @@
-#include <stdarg.h>
 #include <stdio.h>
 #include <wchar.h>
 
+#include "print_helper.h"
 #include "global_vars.h"
 
 void pr_warning(const char* format, ...) {
@@ -53,19 +53,11 @@ void wpr_error(const wchar_t *format, ...) {
     fflush(stderr);
 }
 
-void wprint_token_stdout() {
+void wprint_token(FILE* out_file) {
     if (tokenType == MOT || tokenType == MOTCLE) {
-        fwprintf(stdout, L"%20s: %ls\n", tokenTypestr[tokenType], token[tokenFound].value);
+        fwprintf(out_file, L"%20s: %ls\n", tokenTypestr[tokenType], token[tokenFound].value);
     } else {
-        fwprintf(stdout, L"%20s\n", tokenTypestr[tokenType]);
-    }
-    fflush(stdout);
-}
-
-void wprint_token_target() {
-    if (tokenType == MOT || tokenType == MOTCLE) {
-        fwprintf(target, L"%20s: %ls\n", tokenTypestr[tokenType], token[tokenFound].value);
-    } else {
-        fwprintf(target, L"%20s\n", tokenTypestr[tokenType]);
+        fwprintf(out_file, L"%20s\n", tokenTypestr[tokenType]);
     }
+    fflush(out_file);
 }