mergesort.h

Go to the documentation of this file.
00001 /*
00002 Copyright (C) 2009- The University of Notre Dame
00003 This software is distributed under the GNU General Public License.
00004 See the file COPYING for details.
00005 */
00006 
00007 #ifndef MERGESORT_H
00008 #define MERGESORT_H
00009 
00015 #include "list.h"
00016 
00017 typedef int (*cmp_op_t) (const void *, const void *);
00018 
00028 void mergesort_list(struct list *lst, cmp_op_t cmp);
00029 
00030 #endif