Gitiles
Code Review
Sign In
gerrit.twrp.me
/
android_bootable_recovery
/
1357a42ca5361b8bdd78b943668009068861601f
/
.
/
libblkid
/
crc32.h
blob: b454be9fc55e8a9658a8337ed08e024301be8b4b [
file
] [
log
] [
blame
]
bigbiff bigbiff
e60683a
2013-02-22 20:55:50 -0500
[
diff
] [
blame
]
1
#ifndef
UL_NG_CRC32_H
2
#define
UL_NG_CRC32_H
3
4
#include
<stdint.h>
5
6
extern
uint32_t
crc32
(
uint32_t
seed
,
const
unsigned
char
*
buf
,
size_t
len
);
7
8
#endif
9