1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/* (C) Copyright 2001, 2002, 2003, 2004, 2005 Stijn van Dongen
* (C) Copyright 2006, 2007 Stijn van Dongen
*
* This file is part of tingea. You can redistribute and/or modify tingea
* under the terms of the GNU General Public License; either version 3 of the
* License or (at your option) any later version. You should have received a
* copy of the GPL along with tingea, in the file COPYING.
*/
#ifndef equate_h
#define equate_h
int intCmp
( const void* i1
, const void* i2
) ;
int intRevCmp
( const void* i1
, const void* i2
) ;
int intnCmp
( const int* i1
, const int* i2
, int n
) ;
int fltCmp
( const void* f1
, const void* f2
) ;
int fltRevCmp
( const void* f1
, const void* f2
) ;
int dblCmp
( const void* f1
, const void* f2
) ;
int dblRevCmp
( const void* f1
, const void* f2
) ;
int intLt
( const void* i1
, const void* i2
) ;
int intLq
( const void* i1
, const void* i2
) ;
int intGt
( const void* i1
, const void* i2
) ;
int intGq
( const void* i1
, const void* i2
) ;
int fltLt
( const void* f1
, const void* f2
) ;
int fltLq
( const void* f1
, const void* f2
) ;
int fltGt
( const void* f1
, const void* f2
) ;
int fltGq
( const void* f1
, const void* f2
) ;
#endif
|