SyntaxFix
Write A Post
Hire A Developer
Questions
The typedef, as it is with other constructs, is used to give a data type a new name. In this case it is mostly done in order to make the code cleaner:
typedef
struct myStruct blah;
vs.
myStruct blah;