github.com/cellofellow/gopkg@v0.0.0-20140722061823-eec0544a62ad/image/rawp/librawp/src/rawp_crc32.h (about) 1 // Copyright 2013 <chaishushan{AT}gmail.com>. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 #ifndef RAWP_CRC32_H_ 6 #define RAWP_CRC32_H_ 7 8 #include <stddef.h> 9 #include <stdint.h> 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 uint32_t rawpHashCRC32(const char* data, size_t n); 16 17 #ifdef __cplusplus 18 } 19 #endif 20 #endif // RAWP_CRC32_H_ 21