gethostname.c

来自「minux的源代码,一个非常小的操作系统」· C语言 代码 · 共 28 行

C
28
字号
/* gethostname(2) system call emulation */

#include <sys/types.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <net/gen/netdb.h>

#define HOSTNAME_FILE "/etc/hostname.file"

int gethostname(char *buf, size_t len)
{
	int fd;
	int r;
	char *nl;

	if ((fd= open(HOSTNAME_FILE, O_RDONLY)) < 0) return -1;

	r= read(fd, buf, len);
	close(fd);
	if (r == -1) return -1;

	buf[len-1]= '\0';
	if ((nl= strchr(buf, '\n')) != NULL) *nl= '\0';
	return 0;
}

⌨️ 快捷键说明

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