typedef struct LST { char *word; int freq; struct LST *next; } LIST_EL; void append( LIST_EL **, LIST_EL * ); LIST_EL *search( LIST_EL *, char * ); void dispose( LIST_EL ** );