1values.h(3HEAD) Headers values.h(3HEAD)
2
3
4
6 values.h, values - machine-dependent values
7
9 #include <values.h>
10
11
13 This file contains a set of manifest constants, conditionally defined
14 for particular processor architectures.
15
16
17 The model assumed for integers is binary representation (one's or two's
18 complement), where the sign is represented by the value of the high-
19 order bit.
20
21 BITS(type) The number of bits in a specified type (for
22 example, int).
23
24
25 HIBITS The value of a short integer with only the
26 high-order bit set.
27
28
29 HIBITL The value of a long integer with only the
30 high-order bit set.
31
32
33 HIBITI The value of a regular integer with only the
34 high-order bit set.
35
36
37 MAXSHORT The maximum value of a signed short integer.
38
39
40 MAXLONG The maximum value of a signed long integer.
41
42
43 MAXINT The maximum value of a signed regular inte‐
44 ger.
45
46
47 MAXFLOAT, LN_MAXFLOAT The maximum value of a single-precision
48 floating-point number, and its natural loga‐
49 rithm.
50
51
52 MAXDOUBLE, LN_MAXDOUBLE The maximum value of a double-precision
53 floating-point number, and its natural loga‐
54 rithm.
55
56
57 MINFLOAT, LN_MINFLOAT The minimum positive value of a single-pre‐
58 cision floating-point number, and its natu‐
59 ral logarithm.
60
61
62 MINDOUBLE, LN_MINDOUBLE The minimum positive value of a double-pre‐
63 cision floating-point number, and its natu‐
64 ral logarithm.
65
66
67 FSIGNIF The number of significant bits in the man‐
68 tissa of a single-precision floating-point
69 number.
70
71
72 DSIGNIF The number of significant bits in the man‐
73 tissa of a double-precision floating-point
74 number.
75
76
78 Intro(3) math.h(3HEAD)
79
80
81
82SunOS 5.11 2 Mar 1993 values.h(3HEAD)