Types to Store A Linked List of Integers

typedef struct list_node list_node;
typedef list_node *list;

struct list_node {
    int       data;
    list_node *next;
};

Index