/usr/lib/ocaml/camlpdf/pdfdate.mli is in libcamlpdf-ocaml-dev 2.2.1-1build1.
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 16 17 18 19 20 21 22 23 24 | (** Representing and Parsing PDF Dates *)
(** The type of a date. *)
type t =
{year : int;
month : int;
day : int;
hour : int;
minute : int;
second : int;
hour_offset : int;
minute_offset : int}
(** Raised when [date_of_string] fails. *)
exception BadDate
(** Build a date by parsing a PDF date string. Raises [BadDate] on failure. *)
val date_of_string : string -> t
(** Build a string from a date. *)
val string_of_date : t -> string
(**/**)
val test : unit -> unit
|