⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strcat.c

📁 一组基础的C库的实现
💻 C
字号:
/* $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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -