mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-09 02:51:20 +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;
|
||
|
}
|