struct node { char *item; struct node *next; };
typedef struct node *NODEPTR;如题,请问这个typedef struct node *NODEPTRS是什么意思?谢谢大家