// list.h - the greatest linked list ever #include struct listitem { char* data; struct listitem* next; }; void item_print(struct listitem* item);