The typedef is this:
So, if I do:Code:typedef struct artist* artistNodePtr;
I now have a pointer that can point to an artist struct. You are making this harder than it needs to be. By writing:Code:artistNodePtr aPtr;
You are passing in a pointer to a pointer, and that seems unnecessary.Code:artistNodePtr *sPtr




Reply With Quote