clean.h 283 B

1234567
  1. #ifndef MUPDF_PDF_CLEAN_H
  2. #define MUPDF_PDF_CLEAN_H
  3. /* Read infile, and write selected pages to outfile with the given options. */
  4. void pdf_clean_file(fz_context *ctx, char *infile, char *outfile, char *password, pdf_write_options *opts, char *retainlist[], int retainlen);
  5. #endif