mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-17 23:48:13 +08:00
14 lines
214 B
C
14 lines
214 B
C
/*
|
|
* Copyright (C) 2011-2013, Marvell International Ltd.
|
|
* All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef __CRC32_H
|
|
#define __CRC32_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t crc32(void *__data, int data_size, uint32_t crc);
|
|
|
|
#endif
|