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