Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <LIMITS.H>

CHAR_BIT

CHAR_BIT 8

Description

Number of bits in a `char'.

[Top]


MB_LEN_MAX

MB_LEN_MAX 2

Description

Maximum length of any multibyte character in any locale. Locale-writers should change this as necessary.

[Top]


SCHAR_MIN

SCHAR_MIN (-128)

Description

Minimum and maximum values a `signed char' can hold.

[Top]


SCHAR_MAX

SCHAR_MAX 127

Description

[Top]


UCHAR_MAX

UCHAR_MAX 255U

Description

Maximum value an `unsigned char' can hold. (Minimum is 0.)

[Top]


CHAR_MIN

CHAR_MIN SCHAR_MIN

Description

Minimum and maximum values a `char' can hold. The sign of "char" is probably dictated by a command-line switch to your compiler. MSVC will define _CHAR_UNSIGNED if the /J option is used. GCC uses --unsigned-char (and friends) to override the default for the target processor and defines a symbol __CHAR_UNSIGNED__ if appropriate.

[Top]


CHAR_MAX

CHAR_MAX SCHAR_MAX

Description

[Top]


SHRT_MIN

SHRT_MIN (-32768)

Description

Minimum and maximum values a `signed short int' can hold.

[Top]


SHRT_MAX

SHRT_MAX 32767

Description

[Top]


USHRT_MAX

USHRT_MAX 65535

Description

Maximum value an `unsigned short int' can hold. (Minimum is 0.)

[Top]


INT_MIN

INT_MIN (- INT_MAX - 1)

Description

Minimum and maximum values a `signed int' can hold.

[Top]


INT_MAX

INT_MAX 2147483647

Description

[Top]


UINT_MAX

UINT_MAX 4294967295U

Description

Maximum value an `unsigned int' can hold. (Minimum is 0.)

[Top]


LONG_MIN

LONG_MIN INT_MIN

Description

Minimum and maximum values a `signed long int' can hold.

[Top]


LONG_MAX

LONG_MAX INT_MAX

Description

[Top]


ULONG_MAX

ULONG_MAX UINT_MAX

Description

Maximum value an `unsigned long int' can hold. (Minimum is 0.)