You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixz/pixz.c

13 lines
248 B
C

#include "pixz.h"
int main(void) {
pixz_encode_options *opts = pixz_encode_options_new();
pixz_encode_options_default(opts);
pixz_encode_file(stdin, stdout, opts);
pixz_encode_options_free(opts);
return 0;
}