typedef
typedef struct node { int data; struct node *next; } NodeT;
or
typedef struct node NodeT; struct node { int data; NodeT *next; };