1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
(*
* This file is part of Coccinelle, licensed under the terms of the GPL v2.
* See copyright.txt in the Coccinelle source code for more information.
* The Coccinelle source code can be obtained at http://coccinelle.lip6.fr
*)
(* ----------------------------------------------------------------------- *)
(* Entry point *)
let in_file = ref ""
let out_file = ref ""
let anonymous s =
if !in_file = "" then in_file := s else out_file := s
let speclist = []
let usage =
Printf.sprintf
"Usage: %s [options] <in_filename> <out_filename> \nOptions are:"
(Filename.basename Sys.argv.(0))
let main _ =
Arg.parse speclist anonymous usage;
if !in_file = "" then failwith "in_filename required";
let (ast_lists,ua) = Parse_cocci.process !in_file None false in
Ctltotex.totex !out_file ast_lists (List.map2 Asttoctl.asttoctl ast_lists ua)
let _ = main ()
|