Possible Duplicate:
Typedef pointers a good idea?
I am confused with the following:
typedef struct body *headerptr;
Now, when I create something with type headptr that points to a struct body, to create a new headerptr would be as follows (I'm not sure if I'm doing this correctly):
headerptr newHeadptr;
Am I correct to assume that this would be a pointer that points to a struct body?