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