2008-06-06 16:36:51 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-06-01 23:19:47 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-06-06 16:36:51 +04:00
|
|
|
|
|
|
|
#include "plstr.h"
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
PR_IMPLEMENT(char *)
|
|
|
|
PL_strcat(char *dest, const char *src)
|
|
|
|
{
|
2019-10-08 01:07:04 +03:00
|
|
|
if( ((char *)0 == dest) || ((const char *)0 == src) ) {
|
2008-06-06 16:36:51 +04:00
|
|
|
return dest;
|
2019-10-08 01:07:04 +03:00
|
|
|
}
|
2008-06-06 16:36:51 +04:00
|
|
|
|
|
|
|
return strcat(dest, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_IMPLEMENT(char *)
|
|
|
|
PL_strncat(char *dest, const char *src, PRUint32 max)
|
|
|
|
{
|
|
|
|
char *rv;
|
|
|
|
|
2019-10-08 01:07:04 +03:00
|
|
|
if( ((char *)0 == dest) || ((const char *)0 == src) || (0 == max) ) {
|
2008-06-06 16:36:51 +04:00
|
|
|
return dest;
|
2019-10-08 01:07:04 +03:00
|
|
|
}
|
2008-06-06 16:36:51 +04:00
|
|
|
|
|
|
|
for( rv = dest; *dest; dest++ )
|
|
|
|
;
|
|
|
|
|
|
|
|
(void)PL_strncpy(dest, src, max);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_IMPLEMENT(char *)
|
|
|
|
PL_strcatn(char *dest, PRUint32 max, const char *src)
|
|
|
|
{
|
|
|
|
char *rv;
|
|
|
|
PRUint32 dl;
|
|
|
|
|
2019-10-08 01:07:04 +03:00
|
|
|
if( ((char *)0 == dest) || ((const char *)0 == src) ) {
|
2008-06-06 16:36:51 +04:00
|
|
|
return dest;
|
2019-10-08 01:07:04 +03:00
|
|
|
}
|
2008-06-06 16:36:51 +04:00
|
|
|
|
|
|
|
for( rv = dest, dl = 0; *dest; dest++, dl++ )
|
|
|
|
;
|
|
|
|
|
2019-10-08 01:07:04 +03:00
|
|
|
if( max <= dl ) {
|
|
|
|
return rv;
|
|
|
|
}
|
2008-06-06 16:36:51 +04:00
|
|
|
(void)PL_strncpyz(dest, src, max-dl);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|