user input now handled through function pointers, now defined in config.h
This commit is contained in:
@ -1,5 +1,17 @@
|
||||
#include <curses.h>
|
||||
#include <pthread.h>
|
||||
#ifndef CONFIG_GUARD
|
||||
#define CONFIG_GUARD
|
||||
#include "interactions.c"
|
||||
#endif
|
||||
|
||||
void user_interactions(char *input, unsigned int *status, unsigned int *settings);
|
||||
|
||||
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();
|
||||
|
Reference in New Issue
Block a user