blob: fed3ac5b22c072f4e5cbdeb19eef4234e79324a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef H_LS
#define H_LS
#define SENDDIR_ALL (1 << 0)
#define SENDDIR_LONG (1 << 1)
#define SENDDIR_RECURSE (1 << 2)
#define SENDDIR_SIMPLEDIRS (1 << 3)
#define SENDDIR_NUMIDS (1 << 4)
#define SENDDIR_FILETYPE (1 << 5)
#define SENDDIR_FOLLOWLINKS (1 << 6)
#define SENDDIR_SORTNONE (1 << 7)
#define SENDDIR_SORTMTIME (1 << 8)
#define SENDDIR_SORTSIZE (1 << 9)
#define SENDDIR_SORTREVERSE (1 << 9)
#define SENDDIR_MULTICOLUMN (1 << 10)
char * fileStatStr(char * dir, char * fn, struct stat * sbp, int flags);
void listFiles(char * path, char * fn, int flags);
#endif
|