mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-08 00:09:02 +00:00
10 lines
159 B
C
10 lines
159 B
C
#ifndef NL_KBHIT_H
|
|
#define NL_KBHIT_H
|
|
|
|
void init_keyboard(void);
|
|
void close_keyboard(void);
|
|
int kbhit(void);
|
|
int getch(void);
|
|
|
|
#endif // NL_KBHIT_H
|
|
|