3 /* strxfrm( char *, const char *, size_t )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
15 size_t strxfrm( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
17 size_t len = strlen( s2 );
20 /* Cannot use strncpy() here as the filling of s1 with '\0' is not part
23 while ( n-- && ( *s1++ = _PDCLIB_lconv.ctype[(unsigned char)*s2++].collation ) );
31 #include <_PDCLIB_test.h>
35 char s[] = "xxxxxxxxxxx";
36 TESTCASE( strxfrm( NULL, "123456789012", 0 ) == 12 );
37 TESTCASE( strxfrm( s, "123456789012", 12 ) == 12 );
39 The following test case is true in *this* implementation, but doesn't have to.
40 TESTCASE( s[0] == 'x' );
42 TESTCASE( strxfrm( s, "1234567890", 11 ) == 10 );
43 TESTCASE( s[0] == '1' );
44 TESTCASE( s[9] == '0' );
45 TESTCASE( s[10] == '\0' );