| 18 | } |
| 19 | |
| 20 | inline uint64_t DecodeFixed64(const char* ptr) { |
| 21 | uint64_t result; |
| 22 | memcpy(&result, ptr, sizeof(result)); |
| 23 | return result; |
| 24 | } |
| 25 | |
| 26 | inline void EncodeFixed64(char* buf, uint64_t value) { memcpy(buf, &value, sizeof(value)); } |
| 27 |
no outgoing calls
no test coverage detected