| 219 | // Read a 32 bit long from a file. |
| 220 | |
| 221 | dword 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 |
nothing calls this directly
no outgoing calls
no test coverage detected