12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef MC__ILE_ENTRY_H
- #define MC__ILE_ENTRY_H
- #include <sys/types.h>
- #include <sys/stat.h>
- #include "lib/global.h"
- typedef struct
- {
-
- GString *fname;
-
- struct stat st;
-
- char *name_sort_key;
-
- char *extension_sort_key;
-
- struct
- {
- unsigned int marked:1;
- unsigned int link_to_dir:1;
- unsigned int stale_link:1;
- unsigned int dir_size_computed:1;
- } f;
- } file_entry_t;
- #endif
|