/usr/lib/ocaml/camlpdf/pdfafm.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 | (** Parse Adobe Font Metrics files *)
(** Return the header lines (header item, contents), character metrics
(character, width) and kerning pairs (char1, char2, kerm) from an AFM file. May
raise [Failure]. *)
val read :
Pdfio.input ->
(string * string) list * (int * int) list * (int * int * int) list
|