/usr/lib/ocaml/galax/parse_io.mli is in libgalax-ocaml-dev 1.1-13build1.
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: parse_io.mli,v 1.7 2007/02/01 22:08:51 simeon Exp $ *)
(* Module: Io
Description:
This module contains some basic operations to manipulate I/O's
from Galax.
*)
(**************************)
(* Galax Input Operations *)
(**************************)
(* Note:
galax_input's include a ready-to use lexing buffer, and must be
closed after use.
*)
type galax_input
(* Creates an internal I/O from an external, Galax I/O *)
val galax_input_from_input_spec : Processing_context.processing_context -> Galax_io.input_spec -> galax_input
val galax_utf8_input_from_input_spec : Processing_context.processing_context -> Galax_io.input_spec -> galax_input
(* Closes the I/O *)
val close_galax_input : galax_input -> unit
(* Return the lexbuf component from that I/O *)
val lexbuf_from_galax_input : galax_input -> Lexing.lexbuf
(* Parsing error on input *)
val parse_error_msg : Galax_io.input_spec -> string
val name_of_input_spec : Galax_io.input_spec -> string
(***************************)
(* Galax Output Operations *)
(***************************)
(* Note:
galax_output's include a ready-to use lexing buffer, and must be
closed after use.
*)
type galax_output
(* Creates an internal I/O from an external, Galax I/O *)
val galax_output_from_output_spec : Galax_io.output_spec -> galax_output
(* Creates an output formatter out of a galax output *)
val formatter_of_galax_output : galax_output -> Format.formatter
(* Closes a Galax output *)
val close_galax_output : galax_output -> unit
|