I want Uncrustify to generate this no matter what:
TCHAR* p;
So that all of the following (if any) are converted to the above:
TCHAR * p;
TCHAR *p;
I also want:
TCHAR* f( TCHAR* p )
And I don't want:
TCHAR * f( TCHAR * p )
TCHAR *f( TCHAR *p )
Same for &.
Thank you all.