Release coccinelle-0.1.2
[bpt/coccinelle.git] / parsing_c / unparse_c.mli
1 open Common
2
3 type ppmethod = PPnormal | PPviastr
4
5 (* program -> output filename (often "/tmp/output.c") -> unit *)
6 val pp_program :
7 (Parse_c.toplevel2 * ppmethod) list -> filename -> unit
8
9 val pp_program_default: Parse_c.program2 -> filename -> unit