repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/llvm: Do not build with symbols
[minix3.git]
/
minix
/
usr.sbin
/
mkfs.mfs
/
v3
/
mfsdir.h
blob
46f62b7602c6ee8d95be421be8becca8ecce074f
1
#ifndef _MKFS_MFSDIR_H
2
#define _MKFS_MFSDIR_H
3
4
/* Maximum Minix MFS on-disk directory filename.
5
* MFS uses 'struct direct' to write and parse
6
* directory entries, so this can't be changed
7
* without breaking filesystems.
8
*/
9
#define MFS_DIRSIZ 60
10
11
struct
direct
{
12
uint32_t
d_ino
;
13
char
d_name
[
MFS_DIRSIZ
];
14
}
__packed
;
15
16
#endif
/* _MKFS_MFSDIR_H */