This file is indexed.

/usr/lib/ocaml/camlpdf/pdfmerge.mli is in libcamlpdf-ocaml-dev 2.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
(** Merge PDF files *)

(** Merge PDF files. [merge_pdfs retain_numbering remove_duplicate_fonts names
pdfs ranges] will merge the given PDFs. if [retain_numbering] is true, page
labels are retained. If [remove_duplicate_fonts] is true, duplicate fonts are
detected and coalesced. [names] is a list of strings the same length as the list
of PDFs. Equal names imply equal PDFs (for efficiency). [ranges] is a list of
page ranges. A page range is a list of pages to select, in order. For example
[[1]] or [[2; 2; 2; 5; 6; 7]].  *)
val merge_pdfs :
  bool -> bool -> string list -> Pdf.t list -> int list list -> Pdf.t

(** Remove duplicate fonts from a PDF. For example, if it was created by merging
several documents from the same source. *)
val remove_duplicate_fonts : Pdf.t -> unit