18 lines
278 B
C
18 lines
278 B
C
|
|
/*
|
||
|
|
* This tests the use of the character class regexp syntax
|
||
|
|
* '[[:something]]' in the ini file, as part of a property value.
|
||
|
|
*
|
||
|
|
* Compile it with:
|
||
|
|
* gcc -c -g test38-char-class-in-ini-v0.c
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
struct S
|
||
|
|
{
|
||
|
|
int m0;
|
||
|
|
};
|
||
|
|
|
||
|
|
void
|
||
|
|
foo(struct S* s __attribute__((unused)))
|
||
|
|
{
|
||
|
|
}
|