-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfoot.mli
25 lines (20 loc) · 1.07 KB
/
foot.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(***********************************************************************)
(* *)
(* HEVEA *)
(* *)
(* Luc Maranget, projet PARA, INRIA Rocquencourt *)
(* *)
(* Copyright 1998 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
type saved
val checkpoint : unit -> saved
val hot_start : saved -> unit
val step_anchor : int -> unit
val get_anchor : int -> int
val register : int -> string -> string -> unit
val sub_notes : unit -> unit
val flush : bool -> (string -> unit) (* lexer *) ->
(string -> unit) (* just output *) -> string -> string -> unit
val end_notes : unit -> unit