Syntactic analyser implementation with HTML conversion code
[TP_AL_C.git] / lexer / print_helper.h
... / ...
CommitLineData
1#ifndef PRINT_HELPER_H_
2#define PRINT_HELPER_H_
3
4void pr_warning(const char *format, ...);
5void pr_error(const char *format, ...);
6
7void pr_debug(const char *format, ...);
8
9void wpr_warning(const wchar_t *format, ...);
10void wpr_error(const wchar_t *format, ...);
11
12void wprint_token_stdout();
13void wprint_token_target();
14
15#endif /* PRINT_HELPER_H_ */