mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
15 lines
181 B
C
15 lines
181 B
C
#ifndef ION_ION_H
|
|
#define ION_ION_H
|
|
|
|
#include <stdint.h>
|
|
#include <ion/framebuffer.h>
|
|
|
|
void ion_init();
|
|
|
|
void ion_display_on();
|
|
void ion_display_off();
|
|
|
|
char ion_getchar();
|
|
|
|
#endif
|