29 lines
641 B
C
29 lines
641 B
C
#include <curses.h>
|
|
#include <pthread.h>
|
|
#ifndef INTERACTIONS_GUARD
|
|
#define INTERACTIONS_GUARD
|
|
#include "interactions.c"
|
|
#endif
|
|
|
|
|
|
void user_interactions();
|
|
void quit_program();
|
|
void toggle_selection();
|
|
void move_right();
|
|
void move_up(int passes);
|
|
void move_down(int passes);
|
|
void move_left(int passes);
|
|
void jump_bottom();
|
|
void jump_top();
|
|
void toggle_hidden_files();
|
|
void open_with();
|
|
void rename_hovered();
|
|
void delete();
|
|
void makedir();
|
|
void makefile();
|
|
void update();
|
|
void not_implemented(int passes, int index);
|
|
void jump_to_dir(int passes, int index);
|
|
void order_by(int passes, int index);
|
|
void cmd_on_selected(int passes, int index);
|