How can I configure uncrustify to force one space after "struct"?

92 Views Asked by At

How can I configure uncrustify to change this:

struct     point {
    int x;
    int y;
};

into this?:

struct point {
    int x;
    int y;
};

Notice that the extra spaces between struct and point are removed. I have spent a lot of time reading through the config options and I can't figure this one out.

0

There are 0 best solutions below