Release coccinelle-0.2.3rc1
[bpt/coccinelle.git] / parsing_c / unparse_cocci.mli
CommitLineData
34e49164
C
1exception CantBeInPlus
2
3type pos = Before | After | InPlace
5636bb2c 4type nlhint = StartBox | EndBox | SpaceOrNewline of string ref
34e49164
C
5
6val pp_list_list_any :
951c7801 7 Ast_c.metavars_binding list *
708f4980 8 (* pr cocci *)
5636bb2c
C
9 (string -> int (*line*) -> int (*lcol*) -> int (*rcol*) -> nlhint option
10 -> unit) *
978fd7e5 11 (Ast_c.info -> unit) (* pr c *) *
708f4980 12 (unit -> unit) (* pr C space *) *
34e49164 13 (unit -> unit) (* pr space *) *
708f4980
C
14 (string -> unit) (* pr arity *) *
15 (int (*line*) -> int (*lcol*) -> unit) (* pr barrier *) *
c3e37e97 16 (unit -> unit) (* indent *) * (bool -> unit) (* unindent *) ->
faf9a90c 17 bool (*true if generating*) -> Ast_cocci.anything list list -> pos ->
34e49164 18 unit