forked from EasyCrypt/easycrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecLoader.mli
21 lines (18 loc) · 868 Bytes
/
ecLoader.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(* --------------------------------------------------------------------
* Copyright (c) - 2012--2016 - IMDEA Software Institute
* Copyright (c) - 2012--2018 - Inria
* Copyright (c) - 2012--2018 - Ecole Polytechnique
*
* Distributed under the terms of the CeCILL-C-V1 license
* -------------------------------------------------------------------- *)
(* -------------------------------------------------------------------- *)
type idx_t
type ecloader
type kind = [`Ec | `EcA]
(* -------------------------------------------------------------------- *)
val create : unit -> ecloader
val aslist : ecloader -> ((bool * string) * idx_t) list
val dup : ecloader -> ecloader
val forsys : ecloader -> ecloader
val addidir : ?system:bool -> ?recursive:bool -> string -> ecloader -> unit
val locate : ?onlysys:bool -> string -> ecloader -> (string * kind) option