Home
last modified time | relevance | path

Searched refs:ZWRAP_decompress_type (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.h62 typedef enum { ZWRAP_FORCE_ZLIB, ZWRAP_AUTO } ZWRAP_decompress_type; typedef
69 void ZWRAP_setDecompressionType(ZWRAP_decompress_type type);
72 ZWRAP_decompress_type ZWRAP_getDecompressionType(void);
H A Dzstd_zlibwrapper.c94 static ZWRAP_decompress_type g_ZWRAPdecompressionType = ZWRAP_AUTO;
96 void ZWRAP_setDecompressionType(ZWRAP_decompress_type type) { g_ZWRAPdecompressionType = type; } in ZWRAP_setDecompressionType()
98 ZWRAP_decompress_type ZWRAP_getDecompressionType(void) { return g_ZWRAPdecompressionType; } in ZWRAP_getDecompressionType()