mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
10 lines
214 B
C
10 lines
214 B
C
#ifndef PYTHON_MPHALPORT_H
|
|
#define PYTHON_MPHALPORT_H
|
|
|
|
extern int mp_interrupt_char;
|
|
void mp_hal_set_interrupt_char(int c);
|
|
void mp_keyboard_interrupt(void);
|
|
const char * mp_hal_input(const char * prompt);
|
|
|
|
#endif
|