]> git.sur5r.net Git - c128-kasse/blob - include/globals.h
track day of event and increment it when clock wraps
[c128-kasse] / include / globals.h
1 #ifndef GLOBALS_H
2 #define GLOBALS_H
3
4 #include <stdint.h>
5 #include "c128time.h"
6
7 #ifdef IS_GLOBALS_C
8 #define GLOBAL
9 #else
10 #define GLOBAL extern
11 #endif
12
13 void init_globals(void);
14
15 GLOBAL uint8_t printing;
16 GLOBAL struct daytime_t daytime;
17
18 #endif /*  GLOBALS_H */