2
0
Эх сурвалжийг харах

core: add str_append helper function

Victor Seva 11 жил өмнө
parent
commit
802771362e
2 өөрчлөгдсөн 54 нэмэгдсэн , 0 устгасан
  1. 45 0
      str.c
  2. 9 0
      str.h

+ 45 - 0
str.c

@@ -0,0 +1,45 @@
+/**
+ * $Id$
+ *
+ * Copyright (C) 2014 Victor Seva <[email protected]>
+ *
+ * This file is part of kamailio, a free SIP server.
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <string.h>
+#include "str.h"
+#include "mem/mem.h"
+
+int str_append(str *orig, str *suffix, str *dest)
+{
+	if(orig == NULL || suffix == NULL || suffix->len == 0 || dest == NULL)
+	{
+		LM_ERR("wrong parameters\n");
+		return -1;
+	}
+	dest->len = orig->len + suffix->len;
+	dest->s = pkg_malloc(sizeof(char)*dest->len);
+	if(dest->s==NULL)
+	{
+		LOG(L_ERR, "memory allocation failure\n");
+		return -1;
+	}
+	if(orig->len>0)
+	{
+		memcpy(dest->s, orig->s, orig->len);
+	}
+	memcpy(dest->s+orig->len, suffix->s, suffix->len);
+	return 0;
+}

+ 9 - 0
str.h

@@ -121,4 +121,13 @@ typedef struct _str str;
 
 
 /** @} */
 /** @} */
 
 
+/** Appends a sufffix
+ * @param orig is the original string
+ * @param suffix is the suffix string
+ * @param dest is the result ::str of appending suffix to orig
+ * @return 0 if ok -1 if error
+ * remember to free the dest->s private memory
+ */
+int str_append(str *orig, str *suffix, str *dest);
+
 #endif
 #endif