/usr/lib/ocaml/biniou/bi_util.mli is in libbiniou-ocaml-dev 1.0.12-2build2.
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 | (** Error handling etc. *)
exception Error of string
(** Multipurpose exception normally raised when invalid data
is found by a read or write operation. *)
val error : string -> 'a
(** [error msg] is equivalent to [raise (Error msg)]. *)
(**/**)
val string8_of_int : int -> string
val string4_of_int : int -> string
val print_bits : ?pos:int -> ?len:int -> string -> string
|