1
0
mirror of https://github.com/facebook/zstd.git synced 2025-09-02 15:41:31 +03:00

zlibWrapper: added get_crc_table

This commit is contained in:
Przemyslaw Skibinski
2017-01-17 13:02:06 +01:00
parent d72f4b6b7a
commit 5b114d3c01

View File

@@ -1042,3 +1042,8 @@ ZEXTERN uLong ZEXPORT z_crc32 OF((uLong crc, const Bytef *buf, uInt len))
{ {
return crc32(crc, buf, len); return crc32(crc, buf, len);
} }
ZEXTERN const z_crc_t FAR * ZEXPORT z_get_crc_table OF((void))
{
return get_crc_table();
}