]> pd.if.org Git - pdclib/blob - functions/string/strxfrm.c
Comment cleanups.
[pdclib] / functions / string / strxfrm.c
1 /* strxfrm( char *, const char *, size_t )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <string.h>
8
9 #ifndef REGTEST
10
11 #include <locale.h>
12
13 size_t strxfrm( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
14 {
15     size_t len = strlen( s2 );
16     if ( len < n )
17     {
18         /* Cannot use strncpy() here as the filling of s1 with '\0' is not part
19            of the spec.
20         */
21         while ( n-- && ( *s1++ = _PDCLIB_lconv.ctype[(unsigned char)*s2++].collation ) );
22     }
23     return len;
24 }
25
26 #endif
27
28 #ifdef TEST
29 #include <_PDCLIB_test.h>
30
31 int main( void )
32 {
33     char s[] = "xxxxxxxxxxx";
34     TESTCASE( strxfrm( NULL, "123456789012", 0 ) == 12 );
35     TESTCASE( strxfrm( s, "123456789012", 12 ) == 12 );
36     /*
37     The following test case is true in *this* implementation, but doesn't have to.
38     TESTCASE( s[0] == 'x' );
39     */
40     TESTCASE( strxfrm( s, "1234567890", 11 ) == 10 );
41     TESTCASE( s[0] == '1' );
42     TESTCASE( s[9] == '0' );
43     TESTCASE( s[10] == '\0' );
44     return TEST_RESULTS;
45 }
46 #endif
47