Fix the syntactic analyzer for real.
[TP_AL_C.git] / lexer / print_helper.h
1 #ifndef PRINT_HELPER_H_
2 #define PRINT_HELPER_H_
3
4 #include <stdio.h>
5
6 void pr_warning(const char *format, ...);
7 void pr_error(const char *format, ...);
8
9 void pr_debug(const char *format, ...);
10
11 void wpr_warning(const wchar_t *format, ...);
12 void wpr_error(const wchar_t *format, ...);
13
14 void wprint_token(FILE* out_file);
15 void wprint_ctoken(FILE* out_file);
16
17 #endif /* PRINT_HELPER_H_ */