diff options
Diffstat (limited to 'toplevel/coqtop.mli')
-rw-r--r-- | toplevel/coqtop.mli | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/toplevel/coqtop.mli b/toplevel/coqtop.mli index 842ec4ef..356ccdcc 100644 --- a/toplevel/coqtop.mli +++ b/toplevel/coqtop.mli @@ -1,6 +1,6 @@ (************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) -(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2014 *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2015 *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) @@ -9,8 +9,14 @@ (** The Coq main module. The following function [start] will parse the command line, print the banner, initialize the load path, load the input state, load the files given on the command line, load the ressource file, - produce the output state if any, and finally will launch [Toplevel.loop]. *) + produce the output state if any, and finally will launch [Coqloop.loop]. *) val init_toplevel : string list -> unit val start : unit -> unit + + +(* For other toploops *) +val toploop_init : (string list -> string list) ref +val toploop_run : (unit -> unit) ref + |