emess.h

来自「开源投影系统 Cartographic Projections library」· C头文件 代码 · 共 33 行

H
33
字号
/* Error message processing header file */#ifndef EMESS_H#define EMESS_H#ifndef lintstatic char EMESS_H_ID[] = "@(#)emess.h	4.1	93/03/08	GIE	REL";#endifstruct EMESS {	char	*File_name,	/* input file name */			*Prog_name;	/* name of program */	int		File_line;	/* approximate line read							where error occured */};#ifdef EMESS_ROUTINE	/* use type *//* for emess procedure */struct EMESS emess_dat = { (char *)0, (char *)0, 0 };#ifdef sun /* Archaic SunOs 4.1.1, etc. */extern char *sys_errlist[];#define strerror(n) (sys_errlist[n])#endif#else	/* for for calling procedures */extern struct EMESS emess_dat;void emess(int, char *, ...);#endif /* use type */#endif /* end EMESS_H */

⌨️ 快捷键说明

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