Ext
 All Files Functions
defines.h
Go to the documentation of this file.
1 
7 #ifndef EXT_FILESYSTEM_CORE_DEFINES_H_
8 #define EXT_FILESYSTEM_CORE_DEFINES_H_
9 
10 #define BLOCK_SIZE 128
11 #define INODES_COUNT 128
12 #define BLOCKS_COUNT 128
13 #define BLOCKS_COUNT_IN_INODE 8
14 #define MAX_PATH_LEN 16
15 #define DESCRIPTORS_COUNT 16
16 #define MAGIC 0xFAF
17 #define ROOT_INODE_ID 0
18 #define ROOT_BLOCK_ID 0
19 
20 #endif //EXT_FILESYSTEM_CORE_DEFINES_H_