Release coccinelle-0.1.9-rc1
[bpt/coccinelle.git] / parsing_c / compare_c.mli
CommitLineData
34e49164
C
1type compare_result =
2 | Correct
3 | Pb of string
4 | PbOnlyInNotParsedCorrectly of string
5
6
7(* the string list is the output of diff *)
8
9val compare_ast :
978fd7e5 10 Common.filename -> Common.filename -> compare_result * string list
34e49164 11val compare_token :
978fd7e5 12 Common.filename -> Common.filename -> compare_result * string list
34e49164 13
978fd7e5
C
14val compare_default :
15 Common.filename -> Common.filename -> compare_result * string list
34e49164
C
16
17
18val compare_result_to_string : compare_result * string list -> string
19val compare_result_to_bool : compare_result -> bool