summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/string.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-02-14 20:59:53 +0000
committerBenny Prijono <bennylp@teluu.com>2006-02-14 20:59:53 +0000
commit651dcb6f4a4e36b5cb7b604a30c7107333fbebc4 (patch)
tree252e73a248e2016861cff53c0facca539639a47b /pjlib/include/pj/string.h
parent7b870081568c70589e6cec9e75f9784196e03e03 (diff)
Added pj_strcat2
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@180 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/string.h')
-rw-r--r--pjlib/include/pj/string.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/pjlib/include/pj/string.h b/pjlib/include/pj/string.h
index d6fe54ce..34134fd6 100644
--- a/pjlib/include/pj/string.h
+++ b/pjlib/include/pj/string.h
@@ -426,6 +426,16 @@ PJ_IDECL(int) pj_strnicmp2( const pj_str_t *str1, const char *str2,
*/
PJ_IDECL(void) pj_strcat(pj_str_t *dst, const pj_str_t *src);
+
+/**
+ * Concatenate strings.
+ *
+ * @param dst The destination string.
+ * @param src The source string.
+ */
+PJ_IDECL(void) pj_strcat2(pj_str_t *dst, const char *str);
+
+
/**
* Finds a character in a string.
*