lenochka/kernel/file.h
2019-03-29 00:27:42 +02:00

9 lines
133 B
C

#ifndef __FILE_H
#define __FILE_H
#include "os.h"
#include "fat.h"
void* file_load(fat_t* fat,u32* size,const char* name);
#endif