-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
34 lines (32 loc) · 783 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <stdlib.h>
#include "events.h"
int main(void) {
init_program();
while (true) {
int c = getch();
if (c == 'q') {
break;
} else if (c == KEY_UP) {
move_arrow_up();
} else if (c == KEY_DOWN) {
move_arrow_down();
} else if (c == '\n') {
go_to_directory();
} else if (c == 'd') {
remove_entry();
} else if (c == 'c') {
copy_file(false);
} else if (c == 'x') {
copy_file(true);
} else if (c == 'v') {
paste_file();
} else if (c == 'h') {
switch_hidden_files();
} else {
continue;
}
print_dirs();
}
clear_data();
return EXIT_SUCCESS;
}