LF OS
Hobby operating system for amd64 with high ambitions
Loading...
Searching...
No Matches
rw_hook.c
Go to the documentation of this file.
1int read_lfos(int file, char *ptr, int len);
2int write_lfos(int file, char *ptr, int len);
3
4int read(int file, char *ptr, int len) {
5 return read_lfos(file, ptr, len);
6}
7
8int write(int file, char *ptr, int len) {
9 return write_lfos(file, ptr, len);
10}
int read_lfos(int file, char *ptr, int len)
Definition main.c:135
int write_lfos(int file, char *ptr, int len)
Definition main.c:154
int read(int file, char *ptr, int len)
Definition rw_hook.c:4
int write(int file, char *ptr, int len)
Definition rw_hook.c:8