Release coccinelle-0.2.2-rc1
[bpt/coccinelle.git] / parsing_c / unparse_cocci.mli
1 exception CantBeInPlus
2
3 type pos = Before | After | InPlace
4
5 val pp_list_list_any :
6 Ast_c.metavars_binding list *
7 (* pr cocci *)
8 (string -> int (*line*) -> int (*lcol*) -> int (*rcol*) -> unit) *
9 (Ast_c.info -> unit) (* pr c *) *
10 (unit -> unit) (* pr C space *) *
11 (unit -> unit) (* pr space *) *
12 (string -> unit) (* pr arity *) *
13 (int (*line*) -> int (*lcol*) -> unit) (* pr barrier *) *
14 (unit -> unit) (* indent *) * (bool -> unit) (* unindent *) ->
15 bool (*true if generating*) -> Ast_cocci.anything list list -> pos ->
16 unit