Release coccinelle-0.1.5
[bpt/coccinelle.git] / tests / ben.c
diff --git a/tests/ben.c b/tests/ben.c
new file mode 100644 (file)
index 0000000..be065c1
--- /dev/null
@@ -0,0 +1,24 @@
+GType
+lasso_provider_get_type()
+{
+  static GType this_type = 0;
+
+  if (!this_type) {
+    static const GTypeInfo this_info = {
+      sizeof (LassoProviderClass),
+      NULL,
+      NULL,
+      (GClassInitFunc) class_init,
+      NULL,
+      NULL,
+      sizeof(LassoProvider),
+      0,
+      (GInstanceInitFunc) instance_init,
+                        NULL
+    };
+
+    this_type = g_type_register_static(LASSO_TYPE_NODE,
+                                      "LassoProvider", &this_info, 0);
+  }
+  return this_type;
+}