/usr/lib/ocaml/inifiles/parseini.mli is in libinifiles-ocaml-dev 1.2-3build2.
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 | type token =
| Newline
| EOF
| Section of (string)
| Value of (string * string)
val inifile :
(Lexing.lexbuf -> token) -> Lexing.lexbuf -> (string * ((string * string) list)) list
|