/* * linklist.h * * Walter Goodwater * * CSc 300: Copyright Violations Lab */ #include #include #include typedef struct Node * Nodeptr; struct Node { int age; char * name; Nodeptr next; }; Nodeptr create( char * name, int age, Nodeptr next ); Nodeptr insert( char * name, int age, Nodeptr header ); Nodeptr delete( char * name, Nodeptr header ); void print( Nodeptr header );