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);
|
2020-10-10 19:02:13 -04:00
|
|
|
int get_is_server();
|
2020-10-03 20:30:15 -04:00
|
|
|
|
|
|
|
void key_press(char key);
|
|
|
|
void clear_input();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|