RT-AICHIP-sample
type.h ファイル
被依存関係図:

[ソースコード]

マクロ定義

#define NULL   ((void *)0)
 
#define FALSE   (0)
 
#define TRUE   (1)
 

型定義

typedef signed char int8_t
 
typedef signed short int int16_t
 
typedef signed int int32_t
 
typedef signed __int64 int64_t
 
typedef unsigned char uint8_t
 
typedef unsigned short int uint16_t
 
typedef unsigned int uint32_t
 
typedef unsigned __int64 uint64_t
 

マクロ定義詳解

#define FALSE   (0)

type.h39 行目に定義があります。

#define NULL   ((void *)0)

type.h35 行目に定義があります。

#define TRUE   (1)

type.h43 行目に定義があります。

型定義詳解

typedef signed short int int16_t

type.h22 行目に定義があります。

typedef signed int int32_t

type.h23 行目に定義があります。

typedef signed __int64 int64_t

type.h24 行目に定義があります。

typedef signed char int8_t

type.h21 行目に定義があります。

typedef unsigned short int uint16_t

type.h28 行目に定義があります。

typedef unsigned int uint32_t

type.h29 行目に定義があります。

typedef unsigned __int64 uint64_t

type.h30 行目に定義があります。

typedef unsigned char uint8_t

type.h27 行目に定義があります。