aboutsummaryrefslogtreecommitdiff
path: root/include/crc32.h
blob: affa303fe94461d7aaf8c3ec5a67003f48cefd35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * This code was taken from the linux kernel. The license is GPL Version 2.
 */

#ifndef __CRC32_H__
#define __CRC32_H__

#include <stdint.h>

/* Return a 32-bit CRC of the contents of the buffer */
extern uint32_t crc32(uint32_t val, const void *ss, int len);

#endif /* __CRC32_H__ */