Luna/libs/libc/include/luna/vfs.h

10 lines
176 B
C
Raw Normal View History

2022-10-21 16:31:09 +00:00
#ifndef _LUNA_VFS_H
#define _LUNA_VFS_H
#define __VFS_FILE 0x0
#define __VFS_DIRECTORY 0x1
#define __VFS_DEVICE 0x2
#define __VFS_TO_IFMT(type) ((1 << type) * 010000)
2022-10-21 16:31:09 +00:00
#endif