permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / ben.c
1 GType
2 lasso_provider_get_type()
3 {
4 static GType this_type = 0;
5
6 if (!this_type) {
7 static const GTypeInfo this_info = {
8 sizeof (LassoProviderClass),
9 NULL,
10 NULL,
11 (GClassInitFunc) class_init,
12 NULL,
13 NULL,
14 sizeof(LassoProvider),
15 0,
16 (GInstanceInitFunc) instance_init,
17 NULL
18 };
19
20 this_type = g_type_register_static(LASSO_TYPE_NODE,
21 "LassoProvider", &this_info, 0);
22 }
23 return this_type;
24 }