inv3.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 25 行

C
25
字号
#ifndef lintstatic char *sccsid = "@(#)inv3.c	4.1 (Berkeley) 5/6/83";#endifgetargs(s, arps)char *s, *arps[];{	int i = 0;	while (1)	{		arps[i++] = s;		while (*s != 0 && *s!=' '&& *s != '\t')			s++;		if (*s == 0)			break;		*s++ = 0;		while (*s==' ' || *s=='\t')			s++;		if (*s==0)			break;	}	return(i);}

⌨️ 快捷键说明

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