Release coccinelle-0.2.3rc3
[bpt/coccinelle.git] / ocaml / coccilib.mli
diff --git a/ocaml/coccilib.mli b/ocaml/coccilib.mli
new file mode 100644 (file)
index 0000000..04e7a12
--- /dev/null
@@ -0,0 +1,17 @@
+
+type pos = { current_element : string;
+            file :string ;
+            line : int;
+            col : int;
+            line_end : int;
+            col_end : int; }
+
+type param_type = Pos of pos list | Str of string
+
+val fcts : (string, param_type list -> unit) Hashtbl.t
+
+(* ---------------------------------------------------------------------- *)
+(* Match management *)
+
+val inc_match : bool ref
+val include_match : bool -> unit