mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 23:30:37 +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
|