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

📄 longbits.h

📁 Calc Software Package for Number Calc
💻 H
字号:
/* * DO NOT EDIT -- generated by the Makefile */#if !defined(__LONGBITS_H__)#define __LONGBITS_H__#undef LONG_BITS#define LONG_BITS 32		/* bit length of a long *//* size of long was forced */typedef unsigned char USB8;	/* unsigned 8 bits */typedef signed char SB8;	/* signed 8 bits */typedef unsigned short USB16;	/* unsigned 16 bits */typedef short SB16;		/* signed 16 bits */typedef unsigned long USB32;	/* unsigned 32 bits */typedef long SB32;		/* signed 32 bits */#undef HAVE_B64#define HAVE_B64		/* have USB64 and SB64 types */typedef unsigned long long USB64;	/* unsigned 64 bits */typedef long long SB64;		/* signed 64 bits *//* how to form 64 bit constants */#define U(x) x ## ULL#define L(x) x ## LL#endif /* !__LONGBITS_H__ */

⌨️ 快捷键说明

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