File: pdfe.mli

package info (click to toggle)
camlpdf 2.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,272 kB
  • sloc: ml: 20,816; ansic: 9,525; makefile: 100; sh: 23
file content (13 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
(** Errors *)

(** The type of loggers. Subject to change. *)
type logger = string -> unit

(** Default error logger, writes the string to stderr and flushes. *)
val default : logger

(** The current error logger, set to [default] upon startup. *)
val logger : logger ref

(** Log a string. *)
val log : logger