20 lines
380 B
C
20 lines
380 B
C
#include <curses.h>
|
|
#include <pthread.h>
|
|
#ifndef INTERACTIONS_GUARD
|
|
#define INTERACTIONS_GUARD
|
|
#include "interactions.c"
|
|
#endif
|
|
|
|
|
|
void user_interactions(char *input, WINDOW *win_b);
|
|
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();
|
|
void open_with();
|
|
void rename_hovered();
|