andre@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ andre@0: /* This Source Code Form is subject to the terms of the Mozilla Public andre@0: * License, v. 2.0. If a copy of the MPL was not distributed with this andre@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ andre@0: andre@0: #include "plstr.h" andre@0: #include andre@0: andre@0: PR_IMPLEMENT(char *) andre@0: PL_strcpy(char *dest, const char *src) andre@0: { andre@0: if( ((char *)0 == dest) || ((const char *)0 == src) ) return (char *)0; andre@0: andre@0: return strcpy(dest, src); andre@0: } andre@0: andre@0: PR_IMPLEMENT(char *) andre@0: PL_strncpy(char *dest, const char *src, PRUint32 max) andre@0: { andre@0: char *rv; andre@0: andre@0: if( (char *)0 == dest ) return (char *)0; andre@0: if( (const char *)0 == src ) return (char *)0; andre@0: andre@0: for( rv = dest; max && ((*dest = *src) != 0); dest++, src++, max-- ) andre@0: ; andre@0: andre@0: #ifdef JLRU andre@0: /* XXX I (wtc) think the -- and ++ operators should be postfix. */ andre@0: while( --max ) andre@0: *++dest = '\0'; andre@0: #endif /* JLRU */ andre@0: andre@0: return rv; andre@0: } andre@0: andre@0: PR_IMPLEMENT(char *) andre@0: PL_strncpyz(char *dest, const char *src, PRUint32 max) andre@0: { andre@0: char *rv; andre@0: andre@0: if( (char *)0 == dest ) return (char *)0; andre@0: if( (const char *)0 == src ) return (char *)0; andre@0: if( 0 == max ) return (char *)0; andre@0: andre@0: for( rv = dest, max--; max && ((*dest = *src) != 0); dest++, src++, max-- ) andre@0: ; andre@0: andre@0: *dest = '\0'; andre@0: andre@0: return rv; andre@0: }