stdint.h File Reference

#include <limits.h>

Defines

#define SIZE_MAX   (~(size_t)0)
#define UINT8_MAX   0xff
#define UINT8_C(v)   ((uint8_t) v)
#define INT8_MAX   0x7f
#define INT8_MIN   INT8_C(0x80)
#define INT8_C(v)   ((int8_t) v)
#define UINT16_MAX   0xffff
#define UINT16_C(v)   ((uint16_t) (v))
#define PRINTF_INT16_MODIFIER   "h"
#define INT16_MAX   0x7fff
#define INT16_MIN   INT16_C(0x8000)
#define INT16_C(v)   ((int16_t) (v))
#define UINT32_MAX   (0xffffffffUL)
#define UINT32_C(v)   v ## UL
#define PRINTF_INT32_MODIFIER   "l"
#define INT32_MAX   (0x7fffffffL)
#define INT32_MIN   INT32_C(0x80000000)
#define INT32_C(v)   v ## L
#define stdint_int64_defined
#define UINT64_C(v)   v ## ULL
#define INT64_C(v)   v ## LL
#define PRINTF_INT64_MODIFIER   "ll"
#define LONG_LONG_MAX   INT64_C (9223372036854775807)
#define ULONG_LONG_MAX   UINT64_C (18446744073709551615)
#define INT64_MAX   INT64_C (9223372036854775807)
#define INT64_MIN   INT64_C (-9223372036854775808)
#define UINT64_MAX   UINT64_C (18446744073709551615)
#define PRINTF_INT64_HEX_WIDTH   "16"
#define PRINTF_INT32_HEX_WIDTH   "8"
#define PRINTF_INT16_HEX_WIDTH   "4"
#define PRINTF_INT8_HEX_WIDTH   "2"
#define PRINTF_INT64_DEC_WIDTH   "20"
#define PRINTF_INT32_DEC_WIDTH   "10"
#define PRINTF_INT16_DEC_WIDTH   "5"
#define PRINTF_INT8_DEC_WIDTH   "3"
#define INTMAX_MAX   INT64_MAX
#define INTMAX_MIN   INT64_MIN
#define UINTMAX_MAX   UINT64_MAX
#define UINTMAX_C(v)   UINT64_C(v)
#define INTMAX_C(v)   INT64_C(v)
#define PRINTF_INTMAX_MODIFIER   PRINTF_INT64_MODIFIER
#define PRINTF_INTMAX_HEX_WIDTH   PRINTF_INT64_HEX_WIDTH
#define PRINTF_INTMAX_DEC_WIDTH   PRINTF_INT64_DEC_WIDTH
#define PRINTF_LEAST32_MODIFIER   PRINTF_INT32_MODIFIER
#define PRINTF_LEAST16_MODIFIER   PRINTF_INT16_MODIFIER
#define UINT_LEAST8_MAX   UINT8_MAX
#define INT_LEAST8_MAX   INT8_MAX
#define UINT_LEAST16_MAX   UINT16_MAX
#define INT_LEAST16_MAX   INT16_MAX
#define UINT_LEAST32_MAX   UINT32_MAX
#define INT_LEAST32_MAX   INT32_MAX
#define INT_LEAST8_MIN   INT8_MIN
#define INT_LEAST16_MIN   INT16_MIN
#define INT_LEAST32_MIN   INT32_MIN
#define PRINTF_LEAST64_MODIFIER   PRINTF_INT64_MODIFIER
#define UINT_LEAST64_MAX   UINT64_MAX
#define INT_LEAST64_MAX   INT64_MAX
#define INT_LEAST64_MIN   INT64_MIN
#define UINT_FAST8_MAX   UINT_LEAST8_MAX
#define INT_FAST8_MAX   INT_LEAST8_MAX
#define UINT_FAST16_MAX   UINT_LEAST16_MAX
#define INT_FAST16_MAX   INT_LEAST16_MAX
#define UINT_FAST32_MAX   UINT_LEAST32_MAX
#define INT_FAST32_MAX   INT_LEAST32_MAX
#define INT_FAST8_MIN   IN_LEASTT8_MIN
#define INT_FAST16_MIN   INT_LEAST16_MIN
#define INT_FAST32_MIN   INT_LEAST32_MIN
#define UINT_FAST64_MAX   UINT_LEAST64_MAX
#define INT_FAST64_MAX   INT_LEAST64_MAX
#define INT_FAST64_MIN   INT_LEAST64_MIN
#define WCHAR_MIN   0
#define WCHAR_MAX   ((wchar_t)-1)
#define STDINT_H_UINTPTR_T_DEFINED
#define SIG_ATOMIC_MAX   ((((sig_atomic_t) 1) << (sizeof (sig_atomic_t)*CHAR_BIT-1)) - 1)

Typedefs

typedef long ptrdiff_t
typedef unsigned char uint8_t
typedef signed char int8_t
typedef unsigned short uint16_t
typedef signed short int16_t
typedef unsigned long uint32_t
typedef signed long int32_t
typedef int64_t intmax_t
typedef uint64_t uintmax_t
typedef int8_t int_least8_t
typedef uint8_t uint_least8_t
typedef int16_t int_least16_t
typedef uint16_t uint_least16_t
typedef int32_t int_least32_t
typedef uint32_t uint_least32_t
typedef int64_t int_least64_t
typedef uint64_t uint_least64_t
typedef int_least8_t int_fast8_t
typedef uint_least8_t uint_fast8_t
typedef int_least16_t int_fast16_t
typedef uint_least16_t uint_fast16_t
typedef int_least32_t int_fast32_t
typedef uint_least32_t uint_fast32_t
typedef int_least64_t int_fast64_t
typedef uint_least64_t uint_fast64_t
typedef ptrdiff_t intptr_t

Variables

__extension__ typedef long
long 
int64_t
__extension__ typedef unsigned
long long 
uint64_t


Define Documentation

#define SIZE_MAX   (~(size_t)0)
 

#define UINT8_MAX   0xff
 

#define UINT8_C  )     ((uint8_t) v)
 

#define INT8_MAX   0x7f
 

#define INT8_MIN   INT8_C(0x80)
 

#define INT8_C  )     ((int8_t) v)
 

#define UINT16_MAX   0xffff
 

#define UINT16_C  )     ((uint16_t) (v))
 

#define PRINTF_INT16_MODIFIER   "h"
 

#define INT16_MAX   0x7fff
 

#define INT16_MIN   INT16_C(0x8000)
 

#define INT16_C  )     ((int16_t) (v))
 

#define UINT32_MAX   (0xffffffffUL)
 

#define UINT32_C  )     v ## UL
 

#define PRINTF_INT32_MODIFIER   "l"
 

#define INT32_MAX   (0x7fffffffL)
 

#define INT32_MIN   INT32_C(0x80000000)
 

#define INT32_C  )     v ## L
 

#define stdint_int64_defined
 

#define UINT64_C  )     v ## ULL
 

#define INT64_C  )     v ## LL
 

#define PRINTF_INT64_MODIFIER   "ll"
 

#define LONG_LONG_MAX   INT64_C (9223372036854775807)
 

#define ULONG_LONG_MAX   UINT64_C (18446744073709551615)
 

#define INT64_MAX   INT64_C (9223372036854775807)
 

#define INT64_MIN   INT64_C (-9223372036854775808)
 

#define UINT64_MAX   UINT64_C (18446744073709551615)
 

#define PRINTF_INT64_HEX_WIDTH   "16"
 

#define PRINTF_INT32_HEX_WIDTH   "8"
 

#define PRINTF_INT16_HEX_WIDTH   "4"
 

#define PRINTF_INT8_HEX_WIDTH   "2"
 

#define PRINTF_INT64_DEC_WIDTH   "20"
 

#define PRINTF_INT32_DEC_WIDTH   "10"
 

#define PRINTF_INT16_DEC_WIDTH   "5"
 

#define PRINTF_INT8_DEC_WIDTH   "3"
 

#define INTMAX_MAX   INT64_MAX
 

#define INTMAX_MIN   INT64_MIN
 

#define UINTMAX_MAX   UINT64_MAX
 

#define UINTMAX_C  )     UINT64_C(v)
 

#define INTMAX_C  )     INT64_C(v)
 

#define PRINTF_INTMAX_MODIFIER   PRINTF_INT64_MODIFIER
 

#define PRINTF_INTMAX_HEX_WIDTH   PRINTF_INT64_HEX_WIDTH
 

#define PRINTF_INTMAX_DEC_WIDTH   PRINTF_INT64_DEC_WIDTH
 

#define PRINTF_LEAST32_MODIFIER   PRINTF_INT32_MODIFIER
 

#define PRINTF_LEAST16_MODIFIER   PRINTF_INT16_MODIFIER
 

#define UINT_LEAST8_MAX   UINT8_MAX
 

#define INT_LEAST8_MAX   INT8_MAX
 

#define UINT_LEAST16_MAX   UINT16_MAX
 

#define INT_LEAST16_MAX   INT16_MAX
 

#define UINT_LEAST32_MAX   UINT32_MAX
 

#define INT_LEAST32_MAX   INT32_MAX
 

#define INT_LEAST8_MIN   INT8_MIN
 

#define INT_LEAST16_MIN   INT16_MIN
 

#define INT_LEAST32_MIN   INT32_MIN
 

#define PRINTF_LEAST64_MODIFIER   PRINTF_INT64_MODIFIER
 

#define UINT_LEAST64_MAX   UINT64_MAX
 

#define INT_LEAST64_MAX   INT64_MAX
 

#define INT_LEAST64_MIN   INT64_MIN
 

#define UINT_FAST8_MAX   UINT_LEAST8_MAX
 

#define INT_FAST8_MAX   INT_LEAST8_MAX
 

#define UINT_FAST16_MAX   UINT_LEAST16_MAX
 

#define INT_FAST16_MAX   INT_LEAST16_MAX
 

#define UINT_FAST32_MAX   UINT_LEAST32_MAX
 

#define INT_FAST32_MAX   INT_LEAST32_MAX
 

#define INT_FAST8_MIN   IN_LEASTT8_MIN
 

#define INT_FAST16_MIN   INT_LEAST16_MIN
 

#define INT_FAST32_MIN   INT_LEAST32_MIN
 

#define UINT_FAST64_MAX   UINT_LEAST64_MAX
 

#define INT_FAST64_MAX   INT_LEAST64_MAX
 

#define INT_FAST64_MIN   INT_LEAST64_MIN
 

#define WCHAR_MIN   0
 

#define WCHAR_MAX   ((wchar_t)-1)
 

#define STDINT_H_UINTPTR_T_DEFINED
 

#define SIG_ATOMIC_MAX   ((((sig_atomic_t) 1) << (sizeof (sig_atomic_t)*CHAR_BIT-1)) - 1)
 


Typedef Documentation

typedef long ptrdiff_t
 

typedef unsigned char uint8_t
 

typedef signed char int8_t
 

typedef unsigned short uint16_t
 

typedef signed short int16_t
 

typedef unsigned long uint32_t
 

typedef signed long int32_t
 

typedef int64_t intmax_t
 

typedef uint64_t uintmax_t
 

typedef int8_t int_least8_t
 

typedef uint8_t uint_least8_t
 

typedef int16_t int_least16_t
 

typedef uint16_t uint_least16_t
 

typedef int32_t int_least32_t
 

typedef uint32_t uint_least32_t
 

typedef int64_t int_least64_t
 

typedef uint64_t uint_least64_t
 

typedef int_least8_t int_fast8_t
 

typedef uint_least8_t uint_fast8_t
 

typedef int_least16_t int_fast16_t
 

typedef uint_least16_t uint_fast16_t
 

typedef int_least32_t int_fast32_t
 

typedef uint_least32_t uint_fast32_t
 

typedef int_least64_t int_fast64_t
 

typedef uint_least64_t uint_fast64_t
 

typedef ptrdiff_t intptr_t
 


Variable Documentation

__extension__ typedef long long int64_t
 

__extension__ typedef unsigned long long uint64_t
 


Generated on Sat Feb 13 00:15:38 2010 for MoSync 2 beta 1 by  doxygen 1.4.6-NO