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

📄 gethostname.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  $Id: gethostname.c,v 1.2 1998/08/20 21:56:23 joel Exp $ */#include "config.h"/* * Solaris doesn't include the gethostname call by default. */#include <sys/utsname.h>#include <sys/systeminfo.h>#include <netdb.h>/* * PUBLIC: #ifndef HAVE_GETHOSTNAME * PUBLIC: int gethostname __P((char *, int)); * PUBLIC: #endif */intgethostname(host, len)	char *host;	int len;{	return (sysinfo(SI_HOSTNAME, host, len) == -1 ? -1 : 0);}

⌨️ 快捷键说明

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