Fix the syntactic analyzer for real.
[TP_AL_C.git] / lexer / print_helper.h
index e92cc844387ada53516baf747bf2d42a0ba7e5dd..d5cc42a1b2a8ce4388b82698e4f150d01e8ac254 100644 (file)
@@ -1,10 +1,17 @@
 #ifndef PRINT_HELPER_H_
 #define PRINT_HELPER_H_
 
+#include <stdio.h>
+
 void pr_warning(const char *format, ...);
 void pr_error(const char *format, ...);
 
+void pr_debug(const char *format, ...);
+
 void wpr_warning(const wchar_t *format, ...);
 void wpr_error(const wchar_t *format, ...);
 
+void wprint_token(FILE* out_file);
+void wprint_ctoken(FILE* out_file);
+
 #endif /* PRINT_HELPER_H_ */