| 480 | } |
| 481 | |
| 482 | static bool ReadU64(std::FILE* stream, u64* dest) |
| 483 | { |
| 484 | return std::fread(dest, sizeof(u64), 1, stream) > 0; |
| 485 | } |
| 486 | |
| 487 | static bool WriteString(std::FILE* stream, const std::string& str) |
| 488 | { |
no outgoing calls
no test coverage detected