-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathReadconfig.mli
40 lines (35 loc) · 2.03 KB
/
Readconfig.mli
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
(* *********************************************************************)
(* *)
(* The Compcert verified compiler *)
(* *)
(* Xavier Leroy, INRIA Paris-Rocquencourt *)
(* *)
(* Copyright Institut National de Recherche en Informatique et en *)
(* Automatique. All rights reserved. This file is distributed *)
(* under the terms of the GNU Lesser General Public License as *)
(* published by the Free Software Foundation, either version 2.1 of *)
(* the License, or (at your option) any later version. *)
(* This file is also distributed under the terms of the *)
(* INRIA Non-Commercial License Agreement. *)
(* *)
(* *********************************************************************)
(* Reading configuration files *)
(* The format of a configuration file is a list of lines
variable=value
The "value" on the right hand side is a list of whitespace-separated
words. Quoting is honored with the same rules as POSIX shell:
\<newline> for multi-line values
single quotes no escapes within
double quotes \$ \` \<doublequote> \\ \<newline> as escapes
Finally, lines starting with '#' are comments.
*)
val read_config_file: string -> unit
(** Read (key, value) pairs from the given file name. Raise [Error]
if file is ill-formed. *)
val key_val: string -> string list option
(** [key_val k] returns the value associated with key [k], if any.
Otherwise, [None] is returned. *)
exception Error of string * int * string
(** Raised in case of error.
First argument is file name, second argument is line number,
third argument is an explanation of the error. *)