/usr/lib/ocaml/text/encoding_bigarray.mli is in libtext-ocaml-dev 0.6-3.
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 | (*
* encoding_bigarray.mli
* ---------------------
* Copyright : (c) 2010, Jeremie Dimino <jeremie@dimino.org>
* Licence : BSD3
*
* This file is a part of ocaml-text.
*)
(** Encoding/decoding to/from bigarrays *)
open Bigarray
type byte_array = (char, int8_unsigned_elt, c_layout) Array1.t
(** Type of array of bytes. *)
val decode : Encoding.decoder -> byte_array -> int -> int -> Encoding.decoding_result
val encode : Encoding.encoder -> byte_array -> int -> int -> Encoding.code_point -> Encoding.encoding_result
|