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