Closed
Description
How can I remove the blank lines in the following example?
char *strings[] = {
"Hello", "World"}; // Remove the blank line above
typedef struct {
int a; // Remove the blank line above
} my_struct_t;
void foo()
{
// Remove the blank line above
while (true)
{
// Remove the blank line above
}
}