Read an 8-byte integer
| 26 | |
| 27 | // Read an 8-byte integer |
| 28 | inline int64_t get_long(istream& s) |
| 29 | { |
| 30 | int64_t n; |
| 31 | s.read((char*) &n, 8); |
| 32 | return be64toh(n); |
| 33 | } |
| 34 | |
| 35 | // Read several integers |
| 36 | inline void get_ints(unsigned* res, istream& s, int count) |
no test coverage detected