#ifndef FILE_H #define FILE_H #include typedef struct file_struct { uint32_t file_id; void (*read)(); void (*write)(); void (*seek)(); }file; #endif