1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-21 10:20:15 -04:00
Files
th/sorting.c
2025-04-17 01:17:13 +02:00

15 lines
241 B
C

#include <curses.h>
#include <dirent.h>
#include "defines.h"
extern unsigned int settings;
extern unsigned int file_modifiers;
int skip_hidden_files(const struct dirent *entry){
if (entry->d_name[0] == '.') {
return 0;
}
return 1;
}