18 lines
312 B
C
18 lines
312 B
C
#include <curses.h>
|
|
#include <pthread.h>
|
|
#ifndef CONFIG_GUARD
|
|
#define CONFIG_GUARD
|
|
#include "interactions.c"
|
|
#endif
|
|
|
|
|
|
void user_interactions(char *input);
|
|
void quit_program();
|
|
void move_right();
|
|
void move_up();
|
|
void move_down();
|
|
void move_left();
|
|
void jump_bottom();
|
|
void jump_top();
|
|
void toggle_hidden_files();
|