mirror of
https://gittea.dev/nova/th.git
synced 2025-10-22 10:50:15 -04:00
8 lines
263 B
C
8 lines
263 B
C
#include <curses.h>
|
|
#include "backend.c"
|
|
|
|
|
|
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);
|