]> pd.if.org Git - pdclib/blob - functions/string/strxfrm.c
5849a0cb80ea52a44883c0ed1d7837125f97340a
[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 <_PDCLIB_aux.h>
12 #include <string.h>
13
14 /* TODO: Dummy function, no locale support yet. */
15
16 size_t strxfrm( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
17 {
18     size_t len = strlen( s2 );
19     if ( len < n )
20     {
21         /* Cannot use strncpy() here as the filling of s1 with '\0' is not part
22            of the spec.
23         */
24         while ( n-- && ( *s1++ = *s2++ ) );
25     }
26     return len;
27 }
28
29 #warning Test driver missing.