Thanks for sharing you coding style, even though you say you don't use lite-C... and C or C++ as well I guess...?

You reminded me of another thing, to do with structs. I would like to know how people define structs (or functions even)?

Style 1
Code:

struct myStruct {
int attr;
};



Style 2
Code:

struct myStruct
{
int attr;
};



I use Style 2