]> git.sur5r.net Git - c128-kasse/blob - include/globals.h
kasse: allow starting up without a printer
[c128-kasse] / include / globals.h
1 #ifndef _GLOBALS_H_
2 #define _GLOBALS_H_
3
4 #include <stdint.h>
5
6 #ifdef _IS_GLOBALS_C
7 #define GLOBAL
8 #else
9 #define GLOBAL extern
10 #endif
11
12 void init_globals(void);
13
14 GLOBAL uint8_t printing;
15
16 #endif // _GLOBALS_H_