pathname.c

来自「早期freebsd实现」· C语言 代码 · 共 36 行

C
36
字号
/* *  Hunt *  Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold *  San Francisco, California *//* * There is no particular significance to the numbers assigned * to Test_port.  They're just random numbers greater than the * range reserved for privileged sockets. */# include	<sys/types.h># ifdef DEBUGchar	*Driver =	"/home/socr/a/conrad/games/src/hunt/huntd.dbg";#  ifdef INTERNETu_short	Test_port =	('h' << 8) | 't';#  elsechar	*Sock_name =	"/tmp/hunt";char	*Stat_name =	"/tmp/hunt.stats";#  endif# elsechar	*Driver =	HUNTD;#  ifdef INTERNETu_short	Test_port =	('h' << 8) | 't';#  elsechar	*Sock_name =	"/tmp/hunt";char	*Stat_name =	"/tmp/hunt.stats";#  endif# endif

⌨️ 快捷键说明

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