home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / VALUES.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  2KB  |  70 lines

  1. /*  values.h
  2.  
  3.     Symbolic names for important constants, including machine
  4.     dependencies. A System V compatible header.
  5.  
  6. */
  7.  
  8. /*
  9.  *      C/C++ Run Time Library - Version 8.0
  10.  *
  11.  *      Copyright (c) 1987, 1997 by Borland International
  12.  *      All Rights Reserved.
  13.  *
  14.  */
  15. /* $Revision:   8.2  $ */
  16.  
  17. #if !defined(__VALUES_H)
  18. #define __VALUES_H
  19.  
  20. #if !defined(___DEFS_H)
  21. #include <_defs.h>
  22. #endif
  23.  
  24. #define BITSPERBYTE 8
  25. #define MAXSHORT    0x7fff
  26.  
  27. #if !defined(__FLAT__)
  28. #define MAXINT      0x7FFF
  29. #define HIBITS      0x8000
  30. #define HIBITI      0x8000
  31. #else    /* defined __FLAT__ */
  32. #define MAXINT      0x7fffffff
  33. #define HIBITS      0x80000000
  34. #define HIBITI      0x80000000
  35. #endif
  36.  
  37. #define MAXLONG     0x7fffffff
  38. #define HIBITL      0x80000000
  39.  
  40. #define DMAXEXP     308
  41. #define FMAXEXP     38
  42. #define DMINEXP     -307
  43. #define FMINEXP     -37
  44.  
  45. #define MAXDOUBLE   1.7976931348623158E+308
  46. #define MAXFLOAT    3.40282347E+38F
  47. #define MINDOUBLE   2.2250738585072014E-308
  48. #define MINFLOAT    1.17549435E-38F
  49. #define MAXLDOUBLE  1.1897314953572317649E+4932L
  50. #define MINLDOUBLE  3.362103143112094E-4917L /* This isn't accurate, but it */
  51.                                              /* will do for now. The real   */
  52.                                              /* value should be:            */
  53.                                              /* 3.362103143112094E-4932L    */
  54.  
  55. #define DSIGNIF     53
  56. #define FSIGNIF     24
  57.  
  58. #define DMAXPOWTWO  0x3FF
  59. #define FMAXPOWTWO  0x7F
  60. #define DEXPLEN     11
  61. #define FEXPLEN     8
  62. #define EXPBASE     2
  63. #define IEEE        1
  64. #define LENBASE     1
  65. #define HIDDENBIT   1
  66. #define LN_MAXDOUBLE    7.0978E+2
  67. #define LN_MINDOUBLE    -7.0840E+2
  68.  
  69. #endif  /* __VALUES_H */
  70.