dvitomp fix from Akira
[mplib] / src / texk / kpathsea / concatn.c
1 /* concatn.c: concatenate an arbitrary number of strings.
2
3    Copyright 1999, 2005 Olaf Weber.
4    Copyright 1993, 1995, 2008 Karl Berry.
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    This library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public License
17    along with this library; if not, see <http://www.gnu.org/licenses/>.  */
18
19 #include <kpathsea/config.h>
20
21 #include <kpathsea/concatn.h>
22
23
24 /* OK, it would be epsilon more efficient to compute the total length
25    and then do the copying ourselves, but I doubt it matters in reality.  */
26
27 string
28 concatn PVAR1C(const_string, str1,  ap)
29 {
30   string arg;
31   string ret;
32
33   if (!str1)
34     return NULL;
35   
36   ret = xstrdup (str1);
37   
38   while ((arg = va_arg (ap, string)) != NULL)
39     {
40       string temp = concat (ret, arg);
41       free (ret);
42       ret = temp;
43     }
44   va_end (ap);
45   
46   return ret;
47 }}
48 \f
49 #ifdef TEST
50 int
51 main ()
52 {
53   printf ("null = \"%s\"\n", concatn (NULL));
54   printf ("\"a\" = \"%s\"\n", concatn ("a", NULL));
55   printf ("\"ab\" = \"%s\"\n", concatn ("a", "b", NULL));
56   printf ("\"abc\" = \"%s\"\n", concatn ("a", "b", "c", NULL));
57   printf ("\"abcd\" = \"%s\"\n", concatn ("ab", "cd", NULL));
58   printf ("\"abcde\" = \"%s\"\n", concatn ("ab", "c", "de", NULL));
59   printf ("\"abcdef\" = \"%s\"\n", concatn ("", "a", "", "bcd", "ef", NULL));
60   return 0;
61 }
62
63 #endif /* TEST */
64
65
66 /*
67 Local variables:
68 standalone-compile-command: "gcc -posix -g -I. -I.. -DTEST concatn.c kpathsea.a"
69 End:
70 */