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

📄 bytetypes.h

📁 gcc库的原代码,对编程有很大帮助.
💻 H
字号:
/* These should come from genemit *//* Use __signed__ in case compiling with -traditional.  */typedef __signed__ char QItype;typedef unsigned char QUtype;typedef __signed__ short int HItype;typedef unsigned short int HUtype;typedef __signed__ long int SItype;typedef unsigned long int SUtype;typedef __signed__ long long int DItype;typedef unsigned long long int DUtype;typedef float SFtype;typedef double DFtype;typedef long double XFtype;typedef char *Ptype;typedef int Ttype;typedef union stacktype{  QItype QIval;  QUtype QUval;  HItype HIval;  HUtype HUval;  SItype SIval;  SUtype SUval;  DItype DIval;  DUtype DUval;  SFtype SFval;  DFtype DFval;  XFtype XFval;  Ptype Pval;  Ttype Tval;} stacktype;

⌨️ 快捷键说明

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