removed clang-format and clang_complete files from the repo
[dosdemo] / src / console.h
1 #ifndef CONSOLE_H_
2 #define CONSOLE_H_
3
4 #include "inttypes.h"
5
6 int con_init(void);
7 void con_start(void);
8 void con_stop(void);
9 void con_draw(uint16_t *fb);
10 int con_input(int key);
11
12 void con_printf(const char *fmt, ...);
13
14 #endif  /* CONSOLE_H_ */