19 lines
193 B
C
Raw Normal View History

2020-10-03 20:30:15 -04:00
#ifndef EXTRA_H
#define EXTRA_H
#ifdef __cplusplus
extern "C" {
#endif
int has_feature(const char *name);
void key_press(char key);
void clear_input();
#ifdef __cplusplus
}
#endif
#endif