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

Function lemon_write

LibLemon/src/lemon/filesystem.cpp:17–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15}
16
17int lemon_write(int fd, const void* buffer, size_t count){
18 return syscall(SYS_WRITE, fd, (uintptr_t)buffer, count);
19}
20
21off_t lemon_seek(int fd, off_t offset, int whence){
22 return syscall(SYS_LSEEK, fd, offset, whence);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected