memccpy.c

来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 21 行

C
21
字号
#if !defined(lint) && defined(SCCSIDS)static	char sccsid[] = "@(#)memccpy.c 1.1 92/07/30 SMI"; /* from S5R2 1.1 */#endif/*LINTLIBRARY*//* * Copy s2 to s1, stopping if character c is copied. Copy no more than n bytes. * Return a pointer to the byte after character c in the copy, * or NULL if c is not found in the first n bytes. */char *memccpy(s1, s2, c, n)register char *s1, *s2;register int c, n;{	while (--n >= 0)		if ((*s1++ = *s2++) == c)			return (s1);	return (0);}

⌨️ 快捷键说明

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