公告板
版本库
filestore
活动
搜索
登录
陈嘉乐
/
AndroidDemo
AndroidDemo
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
2020-12-10 1.更新
JLChen
2020-12-10
a8c5f79b0d93adfa7f23601dd0fee30edc14f0d4
[~cjl/AndroidDemo.git]
/
baresip
/
app
/
src
/
main
/
cpp
/
distribution
/
re
/
include
/
re_crc32.h
1
2
3
4
5
6
7
8
9
10
11
12
/**
* @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