aboutsummaryrefslogtreecommitdiff
path: root/proofs/miscprint.mli
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2017-07-13 19:53:54 +0200
committerEmilio Jesus Gallego Arias2017-07-19 16:00:30 +0200
commit9051c1618062ce014719de5c3f73832e9a282a4d (patch)
tree9197008d190e21f99dbaf08967d57f8ebd43c8ce /proofs/miscprint.mli
parente273ff57ef82e81ab6b6309584a7d496ae4659c1 (diff)
[general] Move files to directories matching linking order.
We move a bunch of modules (`Impargs`, `Declare`, `Ind_tables`, `Miscprint`) to their proper place as they were declared in different `mllib` files than the one in their directory. In some cases this could be refined but we don't do anything fancy, we just reflect the status quo.
Diffstat (limited to 'proofs/miscprint.mli')
-rw-r--r--proofs/miscprint.mli37
1 files changed, 37 insertions, 0 deletions
diff --git a/proofs/miscprint.mli b/proofs/miscprint.mli
new file mode 100644
index 0000000000..21d410c7b0
--- /dev/null
+++ b/proofs/miscprint.mli
@@ -0,0 +1,37 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2017 *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+open Misctypes
+
+(** Printing of [intro_pattern] *)
+
+val pr_intro_pattern :
+ ('a -> Pp.std_ppcmds) -> 'a intro_pattern_expr Loc.located -> Pp.std_ppcmds
+
+val pr_or_and_intro_pattern :
+ ('a -> Pp.std_ppcmds) -> 'a or_and_intro_pattern_expr -> Pp.std_ppcmds
+
+val pr_intro_pattern_naming : intro_pattern_naming_expr -> Pp.std_ppcmds
+
+(** Printing of [move_location] *)
+
+val pr_move_location :
+ ('a -> Pp.std_ppcmds) -> 'a move_location -> Pp.std_ppcmds
+
+val pr_bindings :
+ ('a -> Pp.std_ppcmds) ->
+ ('a -> Pp.std_ppcmds) -> 'a bindings -> Pp.std_ppcmds
+
+val pr_bindings_no_with :
+ ('a -> Pp.std_ppcmds) ->
+ ('a -> Pp.std_ppcmds) -> 'a bindings -> Pp.std_ppcmds
+
+val pr_with_bindings :
+ ('a -> Pp.std_ppcmds) ->
+ ('a -> Pp.std_ppcmds) -> 'a * 'a bindings -> Pp.std_ppcmds
+