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