missing printer

This commit is contained in:
Simon Cruanes 2015-10-13 17:37:27 +02:00
parent 7808ecb602
commit b3cbb518b4
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@ type t = char
let equal (a:char) b = a=b
let compare = Char.compare
let pp = Buffer.add_char
let print = Format.pp_print_char

View file

@ -10,5 +10,6 @@ type t = char
val equal : t -> t -> bool
val compare : t -> t -> int
val pp : Buffer.t -> t -> unit
val print : Format.formatter -> t -> unit