]> git.sur5r.net Git - c128-kasse/blob - include/print.h
README: remove emulator configuration, we use -config vicerc
[c128-kasse] / include / print.h
1 #ifndef PRINT_H
2 #define PRINT_H
3
4 void init_log(void);
5 void print_the_buffer(void);
6 void print_header(void);
7 void log_file(const char *s);
8 void log_flush(void);
9
10 #ifdef IS_PRINT_C
11 char print_buffer[80 + 2 + 1];
12 unsigned char log_num = 0;
13 #else
14 extern char print_buffer[80 + 2 + 1];
15 extern unsigned char log_num;
16 extern char *log_heap_buf;
17 extern int log_heap_offset;
18 extern int log_heap_flushed;
19 extern const int LOG_SIZE;
20 #endif
21
22 #endif