struct list { Node *start; // pointer to start of list Node *end; // pointer to end of list int qty; // holds current count of nodes }; typedef struct list List; // because we deserve nice things