Files
cpdf-source/cpdfutil.mli
2025-04-24 15:59:28 +01:00

11 lines
362 B
OCaml

(** Utilities *)
(** Remove a dictionary entry. *)
val remove_dict_entry : Pdf.t -> string -> Pdf.pdfobject option -> unit
(** Replace a dictionary entry. *)
val replace_dict_entry : Pdf.t -> string -> Pdf.pdfobject -> Pdf.pdfobject option -> unit
(** Check for injectible characters in a string, and error out if so. *)
val check_injectible : string -> unit