Subversion Repositories HelenOS

Rev

Rev 3638 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3638 Rev 3660
Line 37... Line 37...
37
#include <bool.h>
37
#include <bool.h>
38
 
38
 
39
#define FAT_NAME_LEN        8
39
#define FAT_NAME_LEN        8
40
#define FAT_EXT_LEN     3
40
#define FAT_EXT_LEN     3
41
 
41
 
-
 
42
#define FAT_NAME_DOT        ".       "
-
 
43
#define FAT_NAME_DOT_DOT    "..      "
-
 
44
#define FAT_EXT_PAD     "   "
-
 
45
 
42
#define FAT_ATTR_RDONLY     (1 << 0)
46
#define FAT_ATTR_RDONLY     (1 << 0)
43
#define FAT_ATTR_VOLLABEL   (1 << 3)
47
#define FAT_ATTR_VOLLABEL   (1 << 3)
44
#define FAT_ATTR_SUBDIR     (1 << 4)
48
#define FAT_ATTR_SUBDIR     (1 << 4)
45
 
49
 
46
#define FAT_PAD         ' ' 
50
#define FAT_PAD         ' '