permit multiline comments and strings in macros
[bpt/coccinelle.git] / tools / extract_c_and_res.ml
CommitLineData
f537ebc4 1(*
17ba0788
C
2 * Copyright 2012, INRIA
3 * Julia Lawall, Gilles Muller
4 * Copyright 2010-2011, INRIA, University of Copenhagen
f537ebc4
C
5 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
6 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
7 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
8 * This file is part of Coccinelle.
9 *
10 * Coccinelle is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, according to version 2 of the License.
13 *
14 * Coccinelle is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
21 *
22 * The authors reserve the right to distribute this or future versions of
23 * Coccinelle under other licenses.
24 *)
25
26
feec80c3 27# 0 "./extract_c_and_res.ml"
485bce71 28open Common
34e49164
C
29
30(*****************************************************************************)
31(* *)
32(*****************************************************************************)
33(* requirments:
34 * - extract from one git commit, or from a set of git commits
35 * - files from drivers/ and also from other directories now
36 * - .c and .h, local .h and also not local .h
37 * - files that were part of the patch, and so modified, but also
38 * other files (especially .h) to get more type information
ae4735db 39 *
34e49164
C
40 *)
41
42(*****************************************************************************)
43(* Flags *)
44(*****************************************************************************)
45
46(*****************************************************************************)
47(* Main entry point *)
48(*****************************************************************************)
49
ae4735db 50let ex_kmallocmemset = "dd00cc486ab1c17049a535413d1751ef3482141c"
34e49164
C
51let ex_new_driver = "3faa1ffb4f4be7d10715f4b003ff7b27d14eae26"
52let ex_delete_driver = "4d8506b806cc726c96db1c1a55edfb2da52217a9"
53
ae4735db 54let main () =
34e49164
C
55 begin
56 let args = ref [] in
57 let options = [
58 ] in
ae4735db
C
59 let usage_msg =
60 "Usage: " ^ basename Sys.argv.(0) ^
34e49164
C
61 " <file> [options]" ^ "\n" ^ "Options are:"
62 in
63
64 Arg.parse (Arg.align options) (fun x -> args := x::!args) usage_msg;
65 args := List.rev !args;
66
67 (match (!args) with
68 | [x] -> pr x
ae4735db 69 | _ -> Arg.usage (Arg.align options) usage_msg;
34e49164
C
70 )
71 end
72
73(*****************************************************************************)
74let _ =
75 main ()
76