Makefile: allow to override the build type variable.
[TP_AL_C.git] / lexer / print_helper.h
index 5daaa35fc1e0b5222fea0f948cfee92623127834..384c50b0d8980fd3a2b201d818c06926222f6b28 100644 (file)
@@ -1,6 +1,9 @@
 #ifndef PRINT_HELPER_H_
 #define PRINT_HELPER_H_
 
+#include <stdio.h>
+#include <wchar.h>
+
 void pr_warning(const char *format, ...);
 void pr_error(const char *format, ...);
 
@@ -9,6 +12,7 @@ void pr_debug(const char *format, ...);
 void wpr_warning(const wchar_t *format, ...);
 void wpr_error(const wchar_t *format, ...);
 
-void wprint_token();
+void wprint_token(FILE* out_file);
+void wprint_ctoken(FILE* out_file);
 
 #endif /* PRINT_HELPER_H_ */