X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrxfrm.c;h=578eb4ba7a5c536b3c129bc434391c0024cbcee9;hb=c0169638bd02098717cb23fbbca3bcc4e4caccf0;hp=96c29e1c3b876c928ef1aba6b7824b77a6761ae7;hpb=0a5395faab237ba9008352b0f4bee9659bbd3d5f;p=pdclib diff --git a/functions/string/strxfrm.c b/functions/string/strxfrm.c index 96c29e1..578eb4b 100644 --- a/functions/string/strxfrm.c +++ b/functions/string/strxfrm.c @@ -1,22 +1,28 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- +/* $Id$ */ -size_t strxfrm( char * restrict s1, const char * restrict s2, size_t n ) { /* TODO */ }; +/* Release $Name$ */ -/* PDPC code - unreviewed +/* strxfrm( char *, const char *, size_t ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#include + +/* TODO: Dummy function, no locale support yet. */ + +size_t strxfrm( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n ) { - size_t oldlen; - - oldlen = strlen(s2); - if (oldlen < n) + size_t len = strlen( s2 ); + if ( len < n ) { - memcpy(s1, s2, oldlen); - s1[oldlen] = '\0'; + /* Cannot use strncpy() here as the filling of s1 with '\0' is not part + of the spec. + */ + while ( n-- && ( *s1++ = *s2++ ) ); } - return (oldlen); + return len; } -*/ + +#warning Test driver missing.