G
godfatherofsoul
I notice that sometimes typedef struct definitions have an additional
"prefix" identifier like so:
typedef struct prefixName
{
char firstName;
char lastName;
} Name_t;
What is the rationale for the extra name and what are the implications
of leaving it off?
"prefix" identifier like so:
typedef struct prefixName
{
char firstName;
char lastName;
} Name_t;
What is the rationale for the extra name and what are the implications
of leaving it off?