5 /* strncpy( char *, const char *, size_t )
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
15 char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
18 while ( ( n > 0 ) && ( *s1++ = *s2++ ) )
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.
35 #include <_PDCLIB_test.h>
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' );