We have structure typedef'ed as follows.
typedef struct _strTag {
int a;
char *str;
}Str;
We used the options -i4 -bli0 -bad to indent the file in which this structure was present. The structure got indented as follows.
typedef struct _strTag
{
int a;
char *str;
}
Str;
which is undesired. Can you please suggest as to which option we have to use to rectify this. We need the struct indentifer(Str, in this case) also on the same line as the closing brace.