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

📄 msgbuf2.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#ifndef lintstatic	char sccsid[] = "@(#)msgbuf2.c 1.1 92/07/30 SMI"; /* from S5R2 1.4 */#endif# include	"lerror.h"char	*msg2text[ NUM2MSGS ] = {/* [0] */	"name used but not defined",	/* name */	/* name in filename( lineno ) *//* [1] */	"name defined but never used",	/* name */	/* name in filename( lineno ) *//* [2] */	"name declared but never used or defined",	/* name */	/* name in filename( lineno ) *//* [3] */	"name multiply declared",	/* name *//* [4] */	"value type used inconsistently",	/* name *//* [5] */	"value type declared inconsistently",	/* name *//* [6] */	"function argument ( number ) used inconsistently",	/* name and number */	/* function( argnumber )  filename( lineno ) :: filename( lineno ) *//* [7] */	"function called with variable number of arguments",	/* name *//* [8] */	"function value type must be declared before use",	/* name *//* [9] */	"function value is used, but none returned",	/* name *//* [10] */	"function returns value which is always ignored",	/* name *//* [11] */	"function returns value which is sometimes ignored"	/* name */};char	*msg2nbtext[ NUM2MSGS ] = {/* [0] */	" used( %s(%d) ), but not defined",	/* name *//* [1] */	" defined( %s(%d) ), but never used",	/* name *//* [2] */	" declared( %s(%d) ), but never used or defined",	/* name *//* [3] */	" multiply declared",	/* name *//* [4] */	" value used inconsistently",	/* name *//* [5] */	" value declared inconsistently",	/* name *//* [6] */	" used inconsistently",	/* name and number *//* [7] */	": variable # of args.",	/* name *//* [8] */	" function value type must be declared before use",	/* name *//* [9] */	" value is used, but none returned",	/* name *//* [10] */	" returns value which is always ignored",	/* name *//* [11] */	" returns value which is sometimes ignored"	/* name */};short	msg2type[ NUM2MSGS ] = {/* [0] */	NMFNLN,/* [1] */	NMFNLN,/* [2] */	NMFNLN,/* [3] */	NM2FNLN,/* [4] */	NM2FNLN,/* [5] */	NM2FNLN,/* [6] */	ND2FNLN,/* [7] */	NM2FNLN,/* [8] */	NM2FNLN,/* [9] */	NMONLY,/* [10] */	NMONLY,/* [11] */	NMONLY};

⌨️ 快捷键说明

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