summaryrefslogtreecommitdiff
path: root/libiberty/concat.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2001-09-24 23:37:52 +0000
committerDJ Delorie <dj@delorie.com>2001-09-24 23:37:52 +0000
commit6e7916b24565cca1f667f428605a00f84332683b (patch)
treef9eaf2f661ac47aaeb9bbe4de4a63174e1a59a5f /libiberty/concat.c
parent0692c8e08396f4ea557defcf8e3f55065494b4bc (diff)
downloadgdb-6e7916b24565cca1f667f428605a00f84332683b.tar.gz
merge from gcc
Diffstat (limited to 'libiberty/concat.c')
-rw-r--r--libiberty/concat.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/libiberty/concat.c b/libiberty/concat.c
index feed0df819b..136e8be866e 100644
--- a/libiberty/concat.c
+++ b/libiberty/concat.c
@@ -171,6 +171,31 @@ concat VPARAMS ((const char *first, ...))
return newstr;
}
+char *
+reconcat VPARAMS ((char *optr, const char *first, ...))
+{
+ char *newstr;
+
+ /* First compute the size of the result and get sufficient memory. */
+ VA_OPEN (args, first);
+ VA_FIXEDARG (args, char *, optr);
+ VA_FIXEDARG (args, const char *, first);
+ newstr = (char *) xmalloc (vconcat_length (first, args) + 1);
+ VA_CLOSE (args);
+
+ /* Now copy the individual pieces to the result string. */
+ VA_OPEN (args, first);
+ VA_FIXEDARG (args, char *, optr);
+ VA_FIXEDARG (args, const char *, first);
+ vconcat_copy (newstr, first, args);
+ VA_CLOSE (args);
+
+ if (optr)
+ free (optr);
+
+ return newstr;
+}
+
#ifdef MAIN
#define NULLP (char *)0