Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
6439136f2ef03d55d6eeec924cf8233eeb9fb109
/
.
/
src
/
crc32c
/
software.h
blob: 090d00a8abaa697683404c39f1de0d67875447d9 [
file
] [
log
] [
blame
]
#pragma
once
#include
<re.h>
#include
<usrsctp.h>
static
inline
uint32_t
rawrtc_crc32c_software
(
void
const
*
buffer
,
size_t
length
)
{
return
usrsctp_crc32c
((
void
*)
buffer
,
length
);
}