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

📄 msg_proc.c

📁 早期freebsd实现
💻 C
字号:
/* @(#)msg_proc.c	2.1 88/08/11 4.0 RPCSRC *//* * msg_proc.c: implementation of the remote procedure "printmessage" */#include <stdio.h>#include <rpc/rpc.h>	/* always need this here */#include "msg.h"	/* need this too: msg.h will be generated by rpcgen *//* * Remote verson of "printmessage" */int *		printmessage_1(msg)	char **msg;	{	static int result; /* must be static! */	FILE *f;	f = fopen("/dev/console", "w");	if (f == NULL) {		result = 0;		return (&result);	}	fprintf(f, "%s\n", *msg);	fclose(f);	result = 1;	return (&result);}

⌨️ 快捷键说明

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