iloveos/include/fs_constants.hpp
2023-11-29 16:42:26 -08:00

22 lines
389 B
C++

#ifndef FS_CONSTANTS_HPP
#define FS_CONSTANTS_HPP
#include <algorithm>
#include <fcntl.h>
#include <inttypes.h>
#include <linux/fs.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <unistd.h>
#define IO_BLOCK_SIZE 4096
#define NUM_INODE_BLOCKS 1023
#define INODE_SIZE 512
#define DATABLOCKS_PER_BITMAP_BLOCK 255
#endif