home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / djgpp / include / compare.h < prev    next >
C/C++ Source or Header  |  1991-01-20  |  2KB  |  89 lines

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