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