MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / lseek64

Function lseek64

Bcore/src/main/cpp/utils/Compat.h:28–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26typedef off_t off64_t;
27
28static inline off64_t lseek64(int fd, off64_t offset, int whence) {
29 return lseek(fd, offset, whence);
30}
31
32static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) {
33 return pread(fd, buf, nbytes, offset);

Callers 2

CreateMethod · 0.85
GetFileLengthMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected