Fix version.sh compatiblity with Solaris
[xz/debian.git] / src / liblzma / common / easy_encoder.c
blob8dfe29610f796628d9394576e3763443ee521867
1 // SPDX-License-Identifier: 0BSD
3 ///////////////////////////////////////////////////////////////////////////////
4 //
5 /// \file easy_encoder.c
6 /// \brief Easy .xz Stream encoder initialization
7 //
8 // Author: Lasse Collin
9 //
10 ///////////////////////////////////////////////////////////////////////////////
12 #include "easy_preset.h"
15 extern LZMA_API(lzma_ret)
16 lzma_easy_encoder(lzma_stream *strm, uint32_t preset, lzma_check check)
18 lzma_options_easy opt_easy;
19 if (lzma_easy_preset(&opt_easy, preset))
20 return LZMA_OPTIONS_ERROR;
22 return lzma_stream_encoder(strm, opt_easy.filters, check);