MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / lemon_read

Function lemon_read

LibLemon/src/lemon/filesystem.cpp:13–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11}
12
13int lemon_read(int fd, void* buffer, size_t count){
14 return syscall(SYS_READ, fd, (uintptr_t)buffer, count);
15}
16
17int lemon_write(int fd, const void* buffer, size_t count){
18 return syscall(SYS_WRITE, fd, (uintptr_t)buffer, count);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected