mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
11 lines
175 B
C
11 lines
175 B
C
|
#include <lzma.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
lzma_stream strm = LZMA_STREAM_INIT;
|
||
|
int ret;
|
||
|
|
||
|
ret = lzma_stream_decoder(&strm, UINT64_MAX, LZMA_CONCATENATED);
|
||
|
return ret ? -1 : 0;
|
||
|
}
|