e35821b207
Split in as many programs as needed to support various variants of MFS Manual page updated (in mandoc format)
12 lines
234 B
C
12 lines
234 B
C
#ifndef _MKFS_MFSDIR_H
|
|
#define _MKFS_MFSDIR_H
|
|
|
|
/* Linux-extended Minix MFS V1/V2 on-disk directory entry. */
|
|
#define MFS_DIRSIZ 30
|
|
|
|
struct direct {
|
|
uint16_t d_ino;
|
|
char d_name[MFS_DIRSIZ];
|
|
} __packed;
|
|
|
|
#endif /* _MKFS_MFSDIR_H */
|