]> pd.if.org Git - pdclib/blob - functions/string/strncpy.c
Removed the $Name$ tags (not supported by SVN). Added $Id$ to Makefile / text files.
[pdclib] / functions / string / strncpy.c
1 /* $Id$ */
2
3 /* strncpy( char *, const char *, size_t )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #include <string.h>
10
11 #ifndef REGTEST
12
13 char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
14 {
15     char * rc = s1;
16     while ( ( n > 0 ) && ( *s1++ = *s2++ ) )
17     {
18         /* Cannot do "n--" in the conditional as size_t is unsigned and we have
19         to check it again for >0 in the next loop.
20         */
21         --n;
22     }
23     while ( --n )
24     {
25         *s1++ = '\0';
26     }
27     return rc;
28 }
29
30 #endif
31
32 #ifdef TEST
33 #include <_PDCLIB_test.h>
34
35 int main( void )
36 {
37     char s[] = "xxxxxxx";
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