Coccinelle release-1.0.0-rc11
[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
485bce71 27open Common
34e49164
C
28
29(*****************************************************************************)
30(* *)
31(*****************************************************************************)
32(* requirments:
33 * - extract from one git commit, or from a set of git commits
34 * - files from drivers/ and also from other directories now
35 * - .c and .h, local .h and also not local .h
36 * - files that were part of the patch, and so modified, but also
37 * other files (especially .h) to get more type information
ae4735db 38 *
34e49164
C
39 *)
40
41(*****************************************************************************)
42(* Flags *)
43(*****************************************************************************)
44
45(*****************************************************************************)
46(* Main entry point *)
47(*****************************************************************************)
48
ae4735db 49let ex_kmallocmemset = "dd00cc486ab1c17049a535413d1751ef3482141c"
34e49164
C
50let ex_new_driver = "3faa1ffb4f4be7d10715f4b003ff7b27d14eae26"
51let ex_delete_driver = "4d8506b806cc726c96db1c1a55edfb2da52217a9"
52
ae4735db 53let main () =
34e49164
C
54 begin
55 let args = ref [] in
56 let options = [
57 ] in
ae4735db
C
58 let usage_msg =
59 "Usage: " ^ basename Sys.argv.(0) ^
34e49164
C
60 " <file> [options]" ^ "\n" ^ "Options are:"
61 in
62
63 Arg.parse (Arg.align options) (fun x -> args := x::!args) usage_msg;
64 args := List.rev !args;
65
66 (match (!args) with
67 | [x] -> pr x
ae4735db 68 | _ -> Arg.usage (Arg.align options) usage_msg;
34e49164
C
69 )
70 end
71
72(*****************************************************************************)
73let _ =
74 main ()
75