strcat.c

来自「一组基础的C库的实现」· C语言 代码 · 共 50 行

C
50
字号
/* $Id: strcat.c 262 2006-11-16 07:34:57Z solar $ *//* Release $Name$ *//* strcat( char *, const char * )   This file is part of the Public Domain C Library (PDCLib).   Permission is granted to use, modify, and / or redistribute at will.*/#include <string.h>#ifndef REGTESTchar * strcat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 ){    char * rc = s1;    if ( *s1 )    {        while ( *++s1 );    }    while ( (*s1++ = *s2++) );    return rc;}#endif#ifdef TEST#include <_PDCLIB_test.h>int main(){    char s[] = "xx\0xxxxxx";    BEGIN_TESTS;    TESTCASE( strcat( s, abcde ) == s );    TESTCASE( s[2] == 'a' );    TESTCASE( s[6] == 'e' );    TESTCASE( s[7] == '\0' );    TESTCASE( s[8] == 'x' );    s[0] = '\0';    TESTCASE( strcat( s, abcdx ) == s );    TESTCASE( s[4] == 'x' );    TESTCASE( s[5] == '\0' );    TESTCASE( strcat( s, "\0" ) == s );    TESTCASE( s[5] == '\0' );    TESTCASE( s[6] == 'e' );    return TEST_RESULTS;}#endif

⌨️ 快捷键说明

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