Release coccinelle-0.1.2
[bpt/coccinelle.git] / parsing_c / cpp_ast_c.mli
1 type cpp_option =
2 | I of Common.filename
3 | D of string * string option
4
5 val cpp_option_of_cmdline:
6 Common.dirname list (* -I *) * string list (* -D *) -> cpp_option list
7
8 val cpp_expand_include:
9 cpp_option list -> Common.dirname (* start point for relative paths *) ->
10 Ast_c.program -> Ast_c.program
11
12
13 val cpp_ifdef_statementize: Ast_c.program -> Ast_c.program
14