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

📄 sockatmark.c

📁 sock protocol ,it is useful!
💻 C
字号:
/* $Id: sockatmark.c,v 1.3 1999/05/13 16:35:58 karls Exp $ */#ifdef HAVE_CONFIG_H#include "autoconf.h"#endif  /* HAVE_CONFIG_H */#include "common.h"#if !HAVE_SOCKATMARKintsockatmark(s)	int s;{	int argp;	if (ioctl(s, SIOCATMARK, &argp) == -1)		return -1;	return argp == 0 ? 0 : 1;}#elsestatic void avoid_error __P((void));static void avoid_error(){	avoid_error();}#endif  /* HAVE_SOCKATMARK */

⌨️ 快捷键说明

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