home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gxxinc.lzh / GXXINC / COMPARE.H < prev    next >
C/C++ Source or Header  |  1991-07-07  |  2KB  |  99 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. /* 
  4. Copyright (C) 1988 Free Software Foundation
  5.     written by Doug Lea (dl@rocky.oswego.edu)
  6.  
  7. This file is part of GNU CC.
  8.  
  9. GNU CC is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY.  No author or distributor
  11. accepts responsibility to anyone for the consequences of using it
  12. or for whether it serves any particular purpose or works at all,
  13. unless he says so in writing.  Refer to the GNU CC General Public
  14. License for full details.
  15.  
  16. Everyone is granted permission to copy, modify and redistribute
  17. GNU CC, but only under the conditions described in the
  18. GNU CC General Public License.   A copy of this license is
  19. supposed to have been given to you along with GNU CC so you
  20. can know your rights and responsibilities.  It should be in a
  21. file named COPYING.  Among other things, the copyright notice
  22. and this notice must be preserved on all copies.  
  23. */
  24.  
  25. #ifndef _compare_h
  26. #ifdef __GNUG__
  27. #pragma once
  28. #pragma interface
  29. #endif
  30. #define _compare_h 1
  31.  
  32. #include <builtin.h>
  33.  
  34. int compare(int a, int b);
  35. int compare(short a, short b);
  36. int compare(char a, char b);
  37. int compare(unsigned long a, unsigned long b);
  38. int compare(unsigned int a, unsigned int b);
  39. int compare(unsigned short a, unsigned short b);
  40. int compare(unsigned char a, unsigned char b);
  41. int compare(float a, float b);
  42. int compare(double a, double b);
  43. int compare(const char* a, const char* b);
  44.  
  45. #if defined(__OPTIMIZE__) || defined(USE_LIBGXX_INLINES)
  46.  
  47. inline int compare(int a, int b)
  48. {
  49.   return a - b;
  50. }
  51.  
  52. inline int compare(short a, short b)
  53. {
  54.   return a - b;
  55. }
  56.  
  57. inline int compare(char a, char b)
  58. {
  59.   return a - b;
  60. }
  61.  
  62. inline int compare(unsigned long a, unsigned long b)
  63. {
  64.   return (a < b)? -1 : (a > b)? 1 : 0;
  65. }
  66.  
  67. inline int compare(unsigned int a, unsigned int b)
  68. {
  69.   return (a < b)? -1 : (a > b)? 1 : 0;
  70. }
  71.  
  72. inline int compare(unsigned short a, unsigned short b)
  73. {
  74.   return (a < b)? -1 : (a > b)? 1 : 0;
  75. }
  76.  
  77. inline int compare(unsigned char a, unsigned char b)
  78. {
  79.   return (a < b)? -1 : (a > b)? 1 : 0;
  80. }
  81.  
  82. inline int compare(float a, float b)
  83. {
  84.   return (a < b)? -1 : (a > b)? 1 : 0;
  85. }
  86.  
  87. inline int compare(double a, double b)
  88. {
  89.   return (a < b)? -1 : (a > b)? 1 : 0;
  90. }
  91.  
  92. inline int compare(const char* a, const char* b)
  93. {
  94.   return strcmp(a,b);
  95. }
  96.  
  97. #endif
  98. #endif
  99.