]> pd.if.org Git - pdclib/blob - functions/string/strxfrm.c
Added some of <string.h>.
[pdclib] / functions / string / strxfrm.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strxfrm( 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 <string.h>
12
13 /* TODO: Dummy function, no locale support yet. */
14
15 size_t strxfrm( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
16 {
17     size_t len = strlen( s2 );
18     if ( len < n )
19     {
20         /* Cannot use strncpy() here as the filling of s1 with '\0' is not part
21            of the spec.
22         */
23         while ( n-- && ( *s1++ = *s2++ ) );
24     }
25     return len;
26 }