2002-02-08 02:14:31 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
2002-02-08 02:14:31 -08:00
|
|
|
(* *)
|
|
|
|
(* Daniel de Rauglaudre, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 2002 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
open Format
|
|
|
|
|
|
|
|
exception Error
|
|
|
|
|
|
|
|
val preprocess : string -> string
|
|
|
|
val remove_preprocessed : string -> unit
|
|
|
|
val remove_preprocessed_if_ast : string -> unit
|
2012-01-20 06:21:03 -08:00
|
|
|
val file : string -> (Lexing.lexbuf -> 'a) -> string -> 'a
|