Files
zTC1/mico-os/platform/MCU/MW3xx/peripherals/boot2/utils/crc32.h

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