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_strcat(char *dest, const char *src) andre@0: { andre@0: if( ((char *)0 == dest) || ((const char *)0 == src) ) andre@0: return dest; andre@0: andre@0: return strcat(dest, src); andre@0: } andre@0: andre@0: PR_IMPLEMENT(char *) andre@0: PL_strncat(char *dest, const char *src, PRUint32 max) andre@0: { andre@0: char *rv; andre@0: andre@0: if( ((char *)0 == dest) || ((const char *)0 == src) || (0 == max) ) andre@0: return dest; andre@0: andre@0: for( rv = dest; *dest; dest++ ) andre@0: ; andre@0: andre@0: (void)PL_strncpy(dest, src, max); andre@0: return rv; andre@0: } andre@0: andre@0: PR_IMPLEMENT(char *) andre@0: PL_strcatn(char *dest, PRUint32 max, const char *src) andre@0: { andre@0: char *rv; andre@0: PRUint32 dl; andre@0: andre@0: if( ((char *)0 == dest) || ((const char *)0 == src) ) andre@0: return dest; andre@0: andre@0: for( rv = dest, dl = 0; *dest; dest++, dl++ ) andre@0: ; andre@0: andre@0: if( max <= dl ) return rv; andre@0: (void)PL_strncpyz(dest, src, max-dl); andre@0: andre@0: return rv; andre@0: }