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

Function writeFile

src/Core/src/FileStream.cpp:50–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48 }
49
50 static size_t writeFile(const void* buffer, size_t len, FILE* fs)
51 {
52#ifdef _MSC_VER
53 return _fwrite_nolock(buffer, 1, len, fs);
54#else
55 return std::fwrite(buffer, 1, len, fs);
56#endif
57 }
58
59 static void fileClose(FILE* fs)
60 {

Callers 1

writeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected