1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-22 02:40:15 -04:00

linked list to keep track of past directory indexes

This commit is contained in:
nova
2025-08-18 21:07:18 +02:00
parent 55cd4077b1
commit f25768d522
5 changed files with 57 additions and 1 deletions

3
dir.h
View File

@@ -7,3 +7,6 @@ unsigned long get_dir_size(char *path);
void get_dir_content(char *path, unsigned long *dir_file_count, file *dir_content);
void print_dir(WINDOW *win, char print_info, unsigned long *dir_file_count, file *dir_content);
void update_selected_file();
void dir_set_selected_file_current(unsigned long selected_file_current);
unsigned long dir_get_selected_file_current();
void dir_init();