mirror of
https://gittea.dev/nova/th.git
synced 2025-10-21 10:20:15 -04:00
14 lines
489 B
C
14 lines
489 B
C
#ifndef DIR_GUARD
|
|
#define DIR_GUARD
|
|
#include "dir.c"
|
|
#endif
|
|
|
|
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);
|
|
char update_selected_file();
|
|
void dir_set_selected_file_current(unsigned long selected_file_current);
|
|
unsigned long dir_get_selected_file_current();
|
|
void dir_init();
|
|
char recursive_delete(file current_file);
|