This file is indexed.

/usr/lib/ocaml/ledit/ledit.mli is in libledit-ocaml-dev 2.03-6.

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
27
(***********************************************************************)
(*                                                                     *)
(*                               Ledit                                 *)
(*                                                                     *)
(*                Daniel de Rauglaudre, INRIA Rocquencourt             *)
(*                                                                     *)
(*  Copyright 1997-2008 Institut National de Recherche en Informatique *)
(*  et Automatique.  Distributed only by permission.                   *)
(*                                                                     *)
(***********************************************************************)

(* $Id: ledit.mli,v 1.13 2008-01-16 09:24:48 deraugla Exp $ *)

value input_char : in_channel -> string;

value set_prompt : string -> unit;
value get_prompt : unit -> string;
value open_histfile : bool -> string -> unit;
value close_histfile : unit -> unit;
value set_max_len : int -> unit;
value set_son_pid : int -> unit;

value unset_meta_as_escape : unit -> unit;
value set_utf8 : unit -> unit;
value set_ascii : unit -> unit;

value trace_sequences : ref bool;