This file is indexed.

/usr/lib/ocaml/utop/uTop_main.mli is in libutop-ocaml-dev 1.19.3-2build1.

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
19
20
21
22
23
24
25
26
(*
 * uTop_main.mli
 * -------------
 * Copyright : (c) 2012, Jeremie Dimino <jeremie@dimino.org>
 * Licence   : BSD3
 *
 * This file is a part of utop.
 *)

val main : unit -> unit
  (** Start utop. *)

exception Term of int
  (** Exception raised when a signal that should terminate the process
      is received. The argument is the signal number.

      utop raises this exception for SIGHUP and SIGTERM by default. *)

type value = V : string * _ -> value

val interact
  :  search_path:string list
  -> unit:string
  -> loc:(string * int * int * int)
  -> values:value list
  -> unit