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

📄 call.h

📁 unix环境高级编程一书源代码 本书全面介绍了UNIX系统的程序设计界面—系统调用界面和标准C库提供的许多函数。 本书的前15章着重于理论知识的阐述
💻 H
字号:
#include	<sys/types.h>#include	<sys/time.h>#include	<errno.h>#include	<termios.h>#include	"ourhdr.h"#define	CS_CALL	"/home/stevens/calld"	/* well-known server name */#define	CL_CALL	"call"					/* command for server */				/* declare global variables */extern char	 escapec;	/* tilde for local commands */extern char	*src;		/* for take and put commands */extern char	*dst;		/* for take and put commands */				/* function prototypes */int		call(const char *);int		doescape(int);void	loop(int);int		prompt_read(char *, int (*)(int, char **));void	put(int);void	take(int);int		take_put_args(int, char **);

⌨️ 快捷键说明

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