mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 16:50:05 +00: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;
|
||
|
}
|