Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/14
14 lines
197 B
C
14 lines
197 B
C
#include <stdlib.h>
|
|
|
|
#include "jbig.h"
|
|
|
|
int main() {
|
|
struct jbg_dec_state state;
|
|
|
|
jbg_dec_init(&state);
|
|
jbg_dec_getplanes(&state);
|
|
jbg_dec_free(&state);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|