/* File: sortlist.h
  
   Interface for sorting items of a linked list.
*/

#ifndef sort_list_h
#define sort_list_h

#include "list1.h"

/* Sort the linked list */

void SortList (list L) ;

#endif
