I have my formatting set to put brace on next line for struct and that is working as expected.
However if I have something like this
typedef struct {
int foo;
int bar;
} mystruct_t;
I am not able the beautifier to do the following:
typedef struct
{
int foo;
int bar;
} mystruct_t;