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

📄 types.h

📁 编译原理中的First集与 Follow集生成程序
💻 H
字号:
/*
 *	file:  types.h
 *  func:  定义一些常见的内置数据类型.
 */
#if _MSC_VER >1200  /* msvc6 or later */
#pragma once
#endif

#ifndef __TYPES_H_
#define __TYPES_H_

typedef int                 sint32;
typedef unsigned int        uint32;
typedef short int           sint16;
typedef unsigned short int  uint16;
//typedef long              sint32;
//typedef unsigned long     uint32;
typedef signed char         schar8;
typedef unsigned char       uchar8;
typedef float               real32;
typedef double              real64;
typedef bool                Bool;
typedef void                Void;

const Bool True=            true;
const Bool False=           false;

#endif /* __TYPES_H_ */

⌨️ 快捷键说明

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