//This is the header file for linked lists //Inlcude any function prototypes here //#defines, and any comments //Helper functions //TODO: Fill in the output and inputs to complete prototypes struct node *create_node(int data, struct node *next); void print_list(struct node *head);