Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
82f6c040fdd33ed449e6064dbd7eab8496367e65
/
.
/
include
/
re_crc32.h
blob: 06bbce20dbf4b2d9c69a5a6905416652a0f44ca2 [
file
] [
log
] [
blame
]
/**
* @file re_crc32.h Interface to CRC-32 functions
*
* Copyright (C) 2010 Creytiv.com
*/
#ifdef
USE_ZLIB
#include
<zlib.h>
#else
uint32_t
crc32
(
uint32_t
crc
,
const
void
*
buf
,
uint32_t
size
);
#endif