⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 typesets.h

📁 微软的基于HMM的人脸识别原代码, 非常经典的说
💻 H
字号:
#define INCLUDE_INT 0 /*(sizeof(long) != sizeof(int))*/

#define CASE_INT	case t_char: case t_short:\
				case t_int: case t_enum
#define CASE_UINT	case t_uchar: case t_ushort: case t_uint
#define CASE_LONG   case t_long
#define CASE_ULONG  case t_ulong
#define CASE_FLOAT  case t_float: case t_double
#define CASE_NUM    CASE_INT:\
				CASE_UINT:\
				CASE_LONG:\
				CASE_ULONG:\
				CASE_FLOAT

/* typesets.c
--------------*/
void EiC_do_stooutput(token_t * e1);
void EiC_do_inc_dec(token_t *e1, int op);
void EiC_output(token_t *e1);
int do_binaryop(token_t *e1, token_t *e2,int op);
int EiC_unaryop(token_t *e1,int op);
void EiC_cast2comm(token_t *e1, token_t *e2);
int EiC_bin_validate(unsigned oper, token_t *e1, token_t *e2);
void EiC_castconst(token_t *e1, token_t *e2,int explicit);
void EiC_castvar(token_t *e1, token_t *e2, int explicit);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -