]> pd.if.org Git - pdclib/blob - functions/string/strcpy.c
8d55b67f808eed138e7b2bbc3eb25d9b6573f655
[pdclib] / functions / string / strcpy.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strcpy( char *, const char * )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <_PDCLIB_aux.h>
12 #include <string.h>
13
14 #ifndef REGTEST
15
16 char * strcpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
17 {
18     char * rc = s1;
19     while ( ( *s1++ = *s2++ ) );
20     return rc;
21 }
22
23 #endif
24
25 #ifdef TEST
26 #include <_PDCLIB_test.h>
27
28 int main()
29 {
30     char s[] = "xxxxx";
31     BEGIN_TESTS;
32     TESTCASE( strcpy( s, "" ) == s );
33     TESTCASE( s[0] == '\0' );
34     TESTCASE( s[1] == 'x' );
35     TESTCASE( strcpy( s, abcde ) == s );
36     TESTCASE( s[0] == 'a' );
37     TESTCASE( s[4] == 'e' );
38     TESTCASE( s[5] == '\0' );
39     return TEST_RESULTS;
40 }
41 #endif