Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OpenLoco/OpenLoco
/ fileTell
Function
fileTell
src/Core/src/FileStream.cpp:23–30 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
21
}
22
23
static size_t fileTell(FILE* fs)
24
{
25
#ifdef _MSC_VER
26
return _ftelli64_nolock(fs);
27
#else
28
return ftello(fs);
29
#endif
30
}
31
32
static void fileSeek(FILE* fs, size_t offset, int origin)
33
{
Callers
1
getFileLength
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected