HP-UX Reference (11i v3 07/02) - 5 Miscellaneous Topics (vol 9)
s
stdint(5) stdint(5)
INT_LEAST64_MAX
maximum value that can be stored in an int_least_64_t
data type
The following macros specify the maximum and minimum limits of integer types corresponding to types
defined in other standard headers. All these values are implementation defined.
PTRDIFF_MIN minimum value that can be stored in
ptrdiff_t data type
PTRDIFF_MAX maximum value that can be stored in
ptrdiff_t data type
SIG_ATOMIC_MIN
minimum value that can be stored in sig_atomic_t data type
SIG_ATOMIC_MAX
maximum value that can be stored in sig_atomic_t data type
SIZE_MAX maximum value that can be stored in
size_t data type
WCHAR_MIN minimum value that can be stored in
wchar_t data type
WCHAR_MAX maximum value that can be stored in
wchar_t data type
WINT_MIN minimum value that can be stored in
wint_t data type
WINT_MAX maximum value that can be stored in
wint_t data type
The following macros expand to integer constant expressions suitable for initializing objects that have
integer types corresponding to types defined in
<stdint.h> header.
Macros For Minimum-Width Integer Constant Expressions
The macro
INTN_C(value) expands to an integer constant expression corresponding to the type
int_leastN_t .
The macro UINTN_C(value) expands to an integer constant expression corresponding to the type
uint_leastN_t. For example, if
uint_least64_t is a name for the type unsigned long
long
, then UINT64_C(0x123)
might expand to the integer constant 0x123ULL.
Macros For Greatest-Width Integer Constant Expressions
The following macro expands to an integer constant expression having the value specified by its argument
and the type
intmax_t: INTMAX_C( value)
The following macro expands to an integer constant expression having the value specified by its argument
and the type uintmax_t: UINTMAX_C( value).
FILES
/usr/include/stdint.h
SEE ALSO
inttypes(5), standards(5), <stddef.h>, <wchar.h>, <signal.h>.
HP-UX 11i Version 3: February 2007 − 3 − Hewlett-Packard Company 493