If i define a char variable
char a;
and a structure with a single char member
struct OneChar { char a; };
As long as there's a single member, I think you're safe with the assumption.