You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
663 B
61 lines
663 B
4 years ago
|
struct S
|
||
|
{
|
||
|
int one, two;
|
||
|
S(int i=1)
|
||
|
{
|
||
|
one = i;
|
||
|
two = i + i;
|
||
|
}
|
||
|
bool check() const
|
||
|
{
|
||
|
return(one == 1);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
struct S
|
||
|
{
|
||
|
enum
|
||
|
{
|
||
|
twentythree = 23,
|
||
|
fortytwoseven = 427
|
||
|
};
|
||
|
int one, two;
|
||
|
S(int i=1)
|
||
|
{
|
||
|
one = i;
|
||
|
two = i + i;
|
||
|
}
|
||
|
bool check() const
|
||
|
{
|
||
|
return(one == 1);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
static uint jhash(K x)
|
||
|
{
|
||
|
ubyte *k;
|
||
|
uint a,
|
||
|
b,
|
||
|
c;
|
||
|
|
||
|
uint
|
||
|
a,
|
||
|
b,
|
||
|
c;
|
||
|
|
||
|
len = x.length;
|
||
|
}
|
||
|
|
||
|
const char *token_names[] =
|
||
|
{
|
||
|
[CT_POUND] = "POUND",
|
||
|
[CT_PREPROC] = "PREPROC",
|
||
|
};
|
||
|
|
||
|
struct whoopee *
|
||
|
foo4(
|
||
|
int param1,
|
||
|
int param2,
|
||
|
char *param2
|
||
|
);
|