vsscanf.c

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

C
26
字号
#ifdef lintstatic char *sccsid = "@(#)vsscanf.c	4.1	(ULTRIX)	7/2/90";#endif lint#include <stdio.h>#include <varargs.h>/* *	This routine implements vsscanf (nonportably) until such time *	as one is available in the system (if ever). */vsscanf(buf, fmt, ap)char	*buf;char	*fmt;va_list	ap;{	FILE	junk;	junk._flag = _IOREAD;	junk._file = -1;	junk._base = junk._ptr = buf;	junk._cnt = strlen(buf);	return _doscan(&junk, fmt, ap);}

⌨️ 快捷键说明

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