18 lines
324 B
C
18 lines
324 B
C
#include <curses.h>
|
|
#include <pthread.h>
|
|
#ifndef INTERACTIONS_GUARD
|
|
#define INTERACTIONS_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();
|