Merge pull request #4531 from aliaspider/master
add get_crc_table() to deps/zlib/crc32.c
This commit is contained in:
commit
76408fc2e8
|
@ -80,6 +80,11 @@ extern "C" {
|
||||||
return crc ^ 0xffffffffL;
|
return crc ^ 0xffffffffL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const unsigned long * get_crc_table()
|
||||||
|
{
|
||||||
|
return crc_table;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue