#ifndef _FS_H #define _FS_H #include #include #define BLOCK_SIZE 1024 #define NRFILE 128 #define NROPEN 32 struct file { uint16_t f_mode; uint16_t f_flags; /* TODO: inode pointer here */ off_t f_pos; }; #endif