It would be awesome to have an option (the name could be BlankLineAfterDeclarationBlock) where in
int main() {
int a;
int b;
printf("%d", a);
}
a newline is inserted between int b; and printf; (useful when we use C89 style/--Werror=declaration-after-statement and we want a newline between declarations/definitions)
It would be awesome to have an option (the name could be BlankLineAfterDeclarationBlock) where in
```c
int main() {
int a;
int b;
printf("%d", a);
}
```
a newline is inserted between `int b;` and `printf;` (useful when we use C89 style/--Werror=declaration-after-statement and we want a newline between declarations/definitions)
It would be awesome to have an option (the name could be
BlankLineAfterDeclarationBlock
) where ina newline is inserted between
int b;
andprintf;
(useful when we use C89 style/--Werror=declaration-after-statement
and we want a newline between declarations/definitions)