/usr/lib/ocaml/galax/whitespace.mli is in libgalax-ocaml-dev 1.1-15+b2.
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 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: whitespace.mli,v 1.14 2007/02/01 22:08:45 simeon Exp $ *)
(* Module: Whitespace
Description:
Manipulation of whitespace within strings. Used during whitespace
handling in XML/XQuery.
*)
(* Whitespace operations *)
val remove_newlines : string -> string
(* Remove leading and trailing whitespace characters *)
val remove_whitespace : string -> string
val remove_leading_whitespace : string -> string
val remove_all_whitespace : string -> string
val whitespace_only : string -> bool
(* Whitespace or not whitespace ? That is the question... *)
val white : char -> bool
type mode =
| Preserve
| Default
(* Split whitespace-separated strings *)
val whitespace_separate : string -> string list
val whitespace_normalize : string -> string
val whitespace_id_normalize : string -> string
val remove_trailing_spaces : string -> string
|