blob: e5a0664d885786d749cf18270bfe29dbabf7b8ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef FILE_H
#define FILE_H
#include <stdint.h>
typedef struct file_struct
{
uint32_t file_id;
void (*read)();
void (*write)();
void (*seek)();
}file;
#endif
|