![Russell Joyce](/assets/img/avatar_default.png)
Handles situations such as `int volatile x` rather than `volatile int x` by consuming the keywords as part of the type specifier.
17 lines
159 B
C
17 lines
159 B
C
int a;
|
|
|
|
unsigned b;
|
|
unsigned int c;
|
|
|
|
long d;
|
|
long int e;
|
|
unsigned long f;
|
|
unsigned long int g;
|
|
|
|
volatile int i;
|
|
int volatile j;
|
|
|
|
int main(void) {
|
|
return 0;
|
|
}
|