Return the crc32c of data[0,n-1]
| 34 | |
| 35 | // Return the crc32c of data[0,n-1] |
| 36 | inline uint32 Value(const char* data, size_t n) { return Extend(0, data, n); } |
| 37 | |
| 38 | #if defined(PLATFORM_GOOGLE) |
| 39 | extern uint32 Extend(uint32 init_crc, const absl::Cord& cord); |