mirror of
https://gitflic.ru/project/npo_rbs/repka-os_kernel.git
synced 2025-04-18 02:04:28 +00:00
11 lines
211 B
C
11 lines
211 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#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;
|
|
}
|