/* ll_defs.h * Authors: Pete Broadwell * Josh Vickery * This is the header file, for our libraries */ #include #include #include #include #include /* structure for an individual list element */ typedef struct snode { struct snode *previous; char contents[256]; struct snode *next; } node; /* structure for a list */ typedef struct sllist { node *first; node *current; node *last; } llist;