MCPcopy Create free account
hub / github.com/CruiserOne/Astrolog / LRead

Function LRead

io.cpp:221–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219// Read a 32 bit long from a file.
220
221dword LRead(FILE *file)
222{
223 byte b1, b2, b3, b4;
224
225 b1 = getbyte(); b2 = getbyte(); b3 = getbyte(); b4 = getbyte();
226 return LFromWW(WFromBB(b1, b2), WFromBB(b3, b4));
227}
228
229
230// This is Astrolog's generic file processing routine, which handles chart

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected