Revision: | 5052 |
Committed: | Mon Dec 22 11:56:03 2014 UTC (10 years, 8 months ago) by michael |
Content type: | text/x-chdr |
File size: | 327 byte(s) |
Log Message: | - Initial import of bopm 3.1.3 |
# | Content |
---|---|
1 | #ifndef LOG_H |
2 | #define LOG_H |
3 | |
4 | extern void log_open(char *filename); |
5 | extern void log_close(void); |
6 | extern void scanlog_open(char *filename); |
7 | extern void scanlog_close(void); |
8 | #ifdef __GNUC__ |
9 | extern void log_printf(char *data, ...) __attribute__((format(printf,1,2))); |
10 | #else |
11 | extern void log_printf(char *data, ...); |
12 | #endif |
13 | |
14 | #endif |
15 |