sensor_api
source
Utilities
Legacy
FirmwareUpdateUtility
crc.h
Go to the documentation of this file.
1
// 32 BIT ANSI X3.66 CRC, polynomial 0xedb88320
2
//
3
// Derived from work by Gary S. Brown, see crc.c for more details.
4
5
#ifndef _CRC_H_
6
#define _CRC_H_
7
8
#include <stdint.h>
9
10
#if __cplusplus
11
extern
"C"
{
12
#endif
13
14
uint32_t
crc32
(uint32_t crc,
const
void
*buf, uint32_t len);
15
16
#if __cplusplus
17
}
18
#endif
19
20
#endif // _CRC_H_
crc32
uint32_t crc32(uint32_t crc, const void *buf, uint32_t len)
Definition:
crc.c:91
multisense_lib
Author(s):
autogenerated on Thu Apr 17 2025 02:49:08