/usr/lib/ocaml/text/text_pcre.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 | (*
* text_pcre.mli
* -------------
* Copyright : (c) 2010, Jeremie Dimino <jeremie@dimino.org>
* Licence : BSD3
*
* This file is a part of ocaml-text.
*)
(** This module is used by the syntax extension *)
val exec : Pcre.substrings array ref -> (Pcre.regexp Lazy.t * Text.t) array -> bool
val regexp : string -> Pcre.regexp
val get_substring : Pcre.substrings -> int -> Text.t
val get_substring_ofs : Pcre.substrings -> int -> int
|