This file is indexed.

/usr/lib/ocaml/ben/benl_parser.mli is in libben-ocaml-dev 0.7.3ubuntu2.

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
28
29
30
31
32
33
34
35
(* The type of tokens. *)

type token = 
  | TRUE
  | STRING of (string)
  | SOURCE
  | SEMICOLON
  | RPAREN
  | REGEXP of (Benl_types.regexp)
  | RBRACKET
  | OR
  | NOT
  | MATCH
  | LT
  | LPAREN
  | LE
  | LBRACKET
  | IDENT of (string)
  | GT
  | GE
  | FIELD of (Benl_types.field)
  | FALSE
  | EQ
  | EOF
  | AND

(* This exception is raised by the monolithic API functions. *)

exception Error

(* The monolithic API. *)

val full_expr: (Lexing.lexbuf -> token) -> Lexing.lexbuf -> (Benl_types.expr)

val config_file: (Lexing.lexbuf -> token) -> Lexing.lexbuf -> (Benl_types.config)