xref: /minix3/minix/usr.sbin/mkfs.mfs/v1l/mfsdir.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc #ifndef _MKFS_MFSDIR_H
2*433d6423SLionel Sambuc #define _MKFS_MFSDIR_H
3*433d6423SLionel Sambuc 
4*433d6423SLionel Sambuc /* Linux-extended Minix MFS V1/V2 on-disk directory entry. */
5*433d6423SLionel Sambuc #define MFS_DIRSIZ	30
6*433d6423SLionel Sambuc 
7*433d6423SLionel Sambuc struct direct {
8*433d6423SLionel Sambuc   uint16_t d_ino;
9*433d6423SLionel Sambuc   char d_name[MFS_DIRSIZ];
10*433d6423SLionel Sambuc } __packed;
11*433d6423SLionel Sambuc 
12*433d6423SLionel Sambuc #endif /* _MKFS_MFSDIR_H */
13