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

📄 general.h

📁 在任务级并行平台P2HP上
💻 H
字号:
/* General purpose header file - rf 12/90 */

#ifndef _H_general
#define _H_general



/* Macintosh specific */
#ifdef MAC					/* rf 12/9/94 */

#define const					/* THINK C doesn't know about these identifiers */
#define signed
#define volatile
#define int long
#ifndef Boolean
#define Boolean char
#endif
#define pint short			/* cast ints in printf statements as pint */
#define sint int			/* cast ints for sequence lengths */
#define lint int			/* cast ints for profile scores */

#else 							/* not Macintoshs */

#define pint int			/* cast ints in printf statements as pint */
#define sint int			/* cast ints for sequence lengths */
#define lint int 			/* cast ints for profile scores */
#ifndef Boolean
#define Boolean char
#endif

#endif 							/* ifdef MAC */

/* definitions for all machines */

#undef TRUE						/* Boolean values; first undef them, just in case */
#undef FALSE
#define TRUE 1
#define FALSE 0

#define EOS '\0'				/* End-Of-String */
#define MAXLINE 512			/* Max. line length */


#ifdef VMS
#define signed
#endif


#endif /* ifndef _H_general */

⌨️ 快捷键说明

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