This file is indexed.

/usr/lib/ocaml/galax/prefix_context.mli is in libgalax-ocaml-dev 1.1-12.

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
36
37
38
39
40
41
(***********************************************************************)
(*                                                                     *)
(*                                 GALAX                               *)
(*                              XQuery Engine                          *)
(*                                                                     *)
(*  Copyright 2001-2007.                                               *)
(*  Distributed only by permission.                                    *)
(*                                                                     *)
(***********************************************************************)

(* $Id: prefix_context.mli,v 1.3 2007/02/01 22:08:54 simeon Exp $ *)

(* Module: Prefix_context
   Description:
     This module implements the context necessary to turn a resolved
     SAX stream back into an unresolved one with the proper xmlns
     attributes.
*)


(*********************************)
(* A type for the prefix context *)
(*********************************)

type prefix_context


(********************************)
(* Creates a new prefix context *)
(********************************)

val build_prefix_context : unit -> prefix_context



(*********************************)
(* Operations on prefix contexts *)
(*********************************)

val push_nsenv_in_prefix_context : prefix_context -> Namespace_context.nsenv -> Namespace_context.binding_table
val pop_nsenv_from_prefix_context : prefix_context -> unit