/usr/lib/ocaml/pxp-engine/pxp_lexers.mli is in libpxp-ocaml-dev 1.2.7-1build2.
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 | (* $Id: pxp_lexers.mli 738 2009-02-02 03:27:35Z gerd $
* ----------------------------------------------------------------------
* PXP: The polymorphic XML parser for Objective Caml.
* Copyright 1999 by Gerd Stolpmann. See LICENSE for details.
*)
open Pxp_core_types.I
open Pxp_lexer_types
val get_lexer_factory : rep_encoding -> lexer_factory
(** Return the lexer factory that is able to handle the passed
* encoding.
*)
val init : lexer_factory -> unit
(** Add a new factory to the set of known factories *)
class false_factory : string -> lexer_factory
(** A factory that always fails with the passed string when it is
* tried to open a source
*)
val get_lexer_set : rep_encoding -> lexer_set
(* DEPRECATED. Only exists because WDialog needs it. This function
* is only emulated to the level that WDialog can use it.
*)
(* Return the set of lexer functions that is able to handle the passed
* encoding.
*)
|