Code cleanups.
[TP_AL_C.git] / lexer / print_helper.h
CommitLineData
9ed84d89
JB
1#ifndef PRINT_HELPER_H_
2#define PRINT_HELPER_H_
3
f196dae5 4#include <stdio.h>
654a57ae 5#include <wchar.h>
f196dae5 6
9ed84d89
JB
7void pr_warning(const char *format, ...);
8void pr_error(const char *format, ...);
9
e70feb8c
JB
10void pr_debug(const char *format, ...);
11
9ed84d89
JB
12void wpr_warning(const wchar_t *format, ...);
13void wpr_error(const wchar_t *format, ...);
14
f196dae5 15void wprint_token(FILE* out_file);
15ad4b5a 16void wprint_ctoken(FILE* out_file);
e70feb8c 17
224a9916 18#endif /* PRINT_HELPER_H_ */