MCPcopy Create free account
hub / github.com/OpenLoco/OpenLoco / fileSeek

Function fileSeek

src/Core/src/FileStream.cpp:32–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30 }
31
32 static void fileSeek(FILE* fs, size_t offset, int origin)
33 {
34#ifdef _MSC_VER
35 _fseeki64_nolock(fs, offset, origin);
36#else
37 fseeko(fs, offset, origin);
38#endif
39 }
40
41 static size_t readFile(void* buffer, size_t len, FILE* fs)
42 {

Callers 2

getFileLengthFunction · 0.85
setPositionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected