1267
|
1 /* concatn.h: concatenate a variable number of strings. |
|
2 This is a separate include file only because I don't see the point of |
|
3 having every source file include <c-vararg.h>. The declarations for |
|
4 the other concat routines are in lib.h. |
|
5 |
|
6 Copyright (C) 1993 Karl Berry. |
|
7 |
|
8 This program is free software; you can redistribute it and/or modify |
|
9 it under the terms of the GNU General Public License as published by |
|
10 the Free Software Foundation; either version 2, or (at your option) |
|
11 any later version. |
|
12 |
|
13 This program is distributed in the hope that it will be useful, |
|
14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 GNU General Public License for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
|
19 along with this program; if not, write to the Free Software |
1315
|
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
1267
|
21 |
|
22 #ifndef KPATHSEA_CONCATN_H |
|
23 #define KPATHSEA_CONCATN_H |
|
24 |
|
25 #include <kpathsea/c-proto.h> |
|
26 #include <kpathsea/c-vararg.h> |
|
27 #include <kpathsea/types.h> |
|
28 |
|
29 /* Concatenate a null-terminated list of strings and return the result |
|
30 in malloc-allocated memory. */ |
|
31 extern string concatn PVAR1H(const_string str1); |
|
32 |
|
33 #endif /* not KPATHSEA_CONCATN_H */ |
|
34 |
|
35 |