include/cedos/file.h (view raw)
1 2 3 4 5 6 7 8 9 10 11
#ifndef FILE_H #define FILE_H #include <stdint.h> #include "cedos/mm/paging.h" int file_read(int fd, char *buffer, uint32_t size); int file_write(int fd, char *buffer, uint32_t size); #endif