typedef struct list_node list_node; typedef list_node *list; struct list_node { int data; list_node *next; };
Index