If I have this struct :
typedef struct node {
int key;
struct node *leftp;
struct node *rightp;
} *Treep;
and I have this function
int blah (Treep *tree);
How can I pass the tree right pointer again into the blah function, I tried using blah ( tree -> rightp ), but it doesn't work, any help on how to do this ? :o
Thanks in advance