HariboteOS/day19/include/fs.h
2021-04-20 21:51:43 +08:00

15 lines
315 B
C

#ifndef _FS_H_
#define _FS_H_
struct FileInfo {
unsigned char name[8], ext[3], type;
char reserve[10];
unsigned short time, date, clustno;
unsigned int size;
};
void file_read_fat(int *fat, unsigned char *img);
void file_load_file(int clustno, int size, char *buf, int *fat, char *img);
#endif // _FS_H_