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