Update contact address
[deliverable/binutils-gdb.git] / libiberty / concat.c
CommitLineData
252b5132 1/* Concatenate variable number of strings.
d42dae6c 2 Copyright (C) 1991, 1994, 2001 Free Software Foundation, Inc.
252b5132
RH
3 Written by Fred Fish @ Cygnus Support
4
5This file is part of the libiberty library.
6Libiberty is free software; you can redistribute it and/or
7modify it under the terms of the GNU Library General Public
8License as published by the Free Software Foundation; either
9version 2 of the License, or (at your option) any later version.
10
11Libiberty is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14Library General Public License for more details.
15
16You should have received a copy of the GNU Library General Public
17License along with libiberty; see the file COPYING.LIB. If
18not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21
22/*
23
24NAME
25
26 concat -- concatenate a variable number of strings
27
28SYNOPSIS
29
30 #include <varargs.h>
31
32 char *concat (s1, s2, s3, ..., NULL)
33
34DESCRIPTION
35
36 Concatenate a variable number of strings and return the result
37 in freshly malloc'd memory.
38
39 Returns NULL if insufficient memory is available. The argument
40 list is terminated by the first NULL pointer encountered. Pointers
41 to empty strings are ignored.
42
43NOTES
44
45 This function uses xmalloc() which is expected to be a front end
46 function to malloc() that deals with low memory situations. In
47 typical use, if malloc() returns NULL then xmalloc() diverts to an
48 error handler routine which never returns, and thus xmalloc will
49 never return a NULL pointer. If the client application wishes to
50 deal with low memory situations itself, it should supply an xmalloc
51 that just directly invokes malloc and blindly returns whatever
52 malloc returns.
53*/
54
55
65a4f13c
DD
56#ifdef HAVE_CONFIG_H
57#include "config.h"
58#endif
252b5132
RH
59#include "ansidecl.h"
60#include "libiberty.h"
926150e2 61#include <sys/types.h> /* size_t */
252b5132
RH
62
63#ifdef ANSI_PROTOTYPES
64#include <stdarg.h>
65#else
66#include <varargs.h>
67#endif
68
d42dae6c
DD
69# if HAVE_STRING_H
70# include <string.h>
71# else
72# if HAVE_STRINGS_H
73# include <strings.h>
74# endif
75# endif
252b5132 76
916aaa12
DD
77#if HAVE_STDLIB_H
78#include <stdlib.h>
79#endif
80
54c20242
DD
81static inline unsigned long vconcat_length PARAMS ((const char *, va_list));
82static inline unsigned long
83vconcat_length (first, args)
84 const char *first;
85 va_list args;
252b5132 86{
54c20242
DD
87 unsigned long length = 0;
88 const char *arg;
252b5132 89
d42dae6c
DD
90 for (arg = first; arg ; arg = va_arg (args, const char *))
91 length += strlen (arg);
92
54c20242
DD
93 return length;
94}
252b5132 95
54c20242
DD
96static inline char *vconcat_copy PARAMS ((char *, const char *, va_list));
97static inline char *
98vconcat_copy (dst, first, args)
99 char *dst;
100 const char *first;
101 va_list args;
102{
103 char *end = dst;
104 const char *arg;
d42dae6c 105
d42dae6c
DD
106 for (arg = first; arg ; arg = va_arg (args, const char *))
107 {
54c20242 108 unsigned long length = strlen (arg);
d42dae6c
DD
109 memcpy (end, arg, length);
110 end += length;
252b5132 111 }
d42dae6c 112 *end = '\000';
54c20242
DD
113
114 return dst;
115}
116
117unsigned long
118concat_length VPARAMS ((const char *first, ...))
119{
120 unsigned long length;
121
122 VA_OPEN (args, first);
123 VA_FIXEDARG (args, const char *, first);
124 length = vconcat_length (first, args);
125 VA_CLOSE (args);
126
127 return length;
128}
129
130char *
131concat_copy VPARAMS ((char *dst, const char *first, ...))
132{
133 char *save_dst;
134
135 VA_OPEN (args, first);
136 VA_FIXEDARG (args, char *, dst);
137 VA_FIXEDARG (args, const char *, first);
138 vconcat_copy (dst, first, args);
139 save_dst = dst; /* With K&R C, dst goes out of scope here. */
140 VA_CLOSE (args);
141
142 return save_dst;
143}
144
145char *libiberty_concat_ptr;
146
147char *
148concat_copy2 VPARAMS ((const char *first, ...))
149{
150 VA_OPEN (args, first);
151 VA_FIXEDARG (args, const char *, first);
152 vconcat_copy (libiberty_concat_ptr, first, args);
153 VA_CLOSE (args);
154
155 return libiberty_concat_ptr;
156}
157
158char *
159concat VPARAMS ((const char *first, ...))
160{
161 char *newstr;
162
163 /* First compute the size of the result and get sufficient memory. */
164 VA_OPEN (args, first);
165 VA_FIXEDARG (args, const char *, first);
166 newstr = (char *) xmalloc (vconcat_length (first, args) + 1);
167 VA_CLOSE (args);
168
169 /* Now copy the individual pieces to the result string. */
170 VA_OPEN (args, first);
171 VA_FIXEDARG (args, const char *, first);
172 vconcat_copy (newstr, first, args);
8a423cb3 173 VA_CLOSE (args);
252b5132 174
d42dae6c 175 return newstr;
252b5132
RH
176}
177
99ee3a8f
DD
178char *
179reconcat VPARAMS ((char *optr, const char *first, ...))
180{
181 char *newstr;
182
183 /* First compute the size of the result and get sufficient memory. */
184 VA_OPEN (args, first);
185 VA_FIXEDARG (args, char *, optr);
186 VA_FIXEDARG (args, const char *, first);
187 newstr = (char *) xmalloc (vconcat_length (first, args) + 1);
188 VA_CLOSE (args);
189
190 /* Now copy the individual pieces to the result string. */
191 VA_OPEN (args, first);
192 VA_FIXEDARG (args, char *, optr);
193 VA_FIXEDARG (args, const char *, first);
194 vconcat_copy (newstr, first, args);
66c94e19 195 if (optr) /* Done before VA_CLOSE so optr stays in scope for K&R C. */
99ee3a8f 196 free (optr);
66c94e19 197 VA_CLOSE (args);
99ee3a8f
DD
198
199 return newstr;
200}
201
252b5132 202#ifdef MAIN
d42dae6c 203#define NULLP (char *)0
252b5132
RH
204
205/* Simple little test driver. */
206
207#include <stdio.h>
208
209int
210main ()
211{
212 printf ("\"\" = \"%s\"\n", concat (NULLP));
213 printf ("\"a\" = \"%s\"\n", concat ("a", NULLP));
214 printf ("\"ab\" = \"%s\"\n", concat ("a", "b", NULLP));
215 printf ("\"abc\" = \"%s\"\n", concat ("a", "b", "c", NULLP));
216 printf ("\"abcd\" = \"%s\"\n", concat ("ab", "cd", NULLP));
217 printf ("\"abcde\" = \"%s\"\n", concat ("ab", "c", "de", NULLP));
218 printf ("\"abcdef\" = \"%s\"\n", concat ("", "a", "", "bcd", "ef", NULLP));
219 return 0;
220}
221
222#endif
This page took 0.100613 seconds and 4 git commands to generate.