]> pd.if.org Git - pdclib/blob - functions/string/strncpy.c
Fixed multiple inclusion issue.
[pdclib] / functions / string / strncpy.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strncpy( char *, const char *, size_t )
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 <string.h>
12
13 #ifndef REGTEST
14
15 char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
16 {
17     char * rc = s1;
18     while ( ( n > 0 ) && ( *s1++ = *s2++ ) )
19     {
20         /* Cannot do "n--" in the conditional as size_t is unsigned and we have
21         to check it again for >0 in the next loop.
22         */
23         --n;
24     }
25     while ( --n )
26     {
27         *s1++ = '\0';
28     }
29     return rc;
30 }
31
32 #endif
33
34 #ifdef TEST
35 #include <_PDCLIB_test.h>
36
37 int main()
38 {
39     char s[] = "xxxxxxx";
40     BEGIN_TESTS;
41     TESTCASE( strncpy( s, "", 1 ) == s );
42     TESTCASE( s[0] == '\0' );
43     TESTCASE( s[1] == 'x' );
44     TESTCASE( strncpy( s, abcde, 6 ) == s );
45     TESTCASE( s[0] == 'a' );
46     TESTCASE( s[4] == 'e' );
47     TESTCASE( s[5] == '\0' );
48     TESTCASE( s[6] == 'x' );
49     TESTCASE( strncpy( s, abcde, 7 ) == s );
50     TESTCASE( s[6] == '\0' );
51     return TEST_RESULTS;
52 }
53 #endif