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

Function lemon_close

LibLemon/src/lemon/filesystem.cpp:9–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7}
8
9void lemon_close(int fd){
10 syscall(SYS_CLOSE, fd);
11}
12
13int lemon_read(int fd, void* buffer, size_t count){
14 return syscall(SYS_READ, fd, (uintptr_t)buffer, count);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected