forked from ocaml/ocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestlib.mli
36 lines (25 loc) · 1.48 KB
/
testlib.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
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Sebastien Hinderer, projet Gallium, INRIA Paris *)
(* *)
(* Copyright 2016 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 version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
(* Miscellaneous library functions *)
val concatmap : ('a -> 'b list) -> 'a list -> 'b list
val is_blank : char -> bool
val maybe_quote : string -> string
val words : string -> string list
val file_is_empty : string -> bool
val string_of_location: Location.t -> string
val run_system_command : string -> unit
val make_directory : string -> unit
val string_of_file : string -> string
val copy_file : string -> string -> unit