opmsg.c

来自「seed格式数据解压程序,地震分析人员必备」· C语言 代码 · 共 38 行

C
38
字号
/*===========================================================================*//* DMC interim out |                opmsg                  |         Utility *//*===========================================================================*//*	Name:		opmsg_handler	Purpose:	print messages to operator in a standard way				(not used for user messages)	Usage:		void opmsg ();				char *message;				opmsg_handler (message);	Input:		message = a string containing the message to be written	Output:		none	Externals:	none	Messages:	none	Warnings:	none	Errors:		none	Fatals:		none	Called by:	anything	Calls to:	none	Algorithm:	write a message to stderr	Notes:		a newline is added in this routine, so one need not be present					in the "message" string	Problems:	none known	Debug:		not used	References:	none	Language:	Sun OS 3.5 C	Revisions:	02/22/89  Dennis O'Neill  original version*/#include "output.h"void opmsg (message)char *message;{	fprintf (stderr, "%s\n", message);	return;}

⌨️ 快捷键说明

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