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

Function lemon_seek

LibLemon/src/lemon/filesystem.cpp:21–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21off_t lemon_seek(int fd, off_t offset, int whence){
22 return syscall(SYS_LSEEK, fd, offset, whence);
23}
24
25int lemon_readdir(int fd, uint64_t count, lemon_dirent_t* dirent){
26 return syscall(SYS_READDIR, fd, (uintptr_t)dirent, count);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected