00001 /* 00002 || This file is part of Pike. For copyright information see COPYRIGHT. 00003 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING 00004 || for more information. 00005 || $Id: fsort.h,v 1.6 2002/10/11 01:39:31 nilsson Exp $ 00006 */ 00007 00008 #ifndef FSORT_H 00009 #define FSORT_H 00010 00011 typedef int (*fsortfun)(const void *,const void *); 00012 00013 /* Prototypes begin here */ 00014 void fsort(void *base, 00015 long elms, 00016 long elmSize, 00017 fsortfun cmpfunc); 00018 /* Prototypes end here */ 00019 00020 00021 #endif
1.3.9.1