am 87101256
: Merge "libsparse: Wrap sparse_crc32.h to be C++ compatible."
* commit '871012566441e1b14b03ef0584402f31b668c96a': libsparse: Wrap sparse_crc32.h to be C++ compatible.
This commit is contained in:
commit
75b3f8c9a6
1 changed files with 12 additions and 0 deletions
|
@ -14,7 +14,19 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef _LIBSPARSE_SPARSE_CRC32_H_
|
||||
#define _LIBSPARSE_SPARSE_CRC32_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue