1 /* path-concat.c -- concatenate two arbitrary pathnames
3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free
4 Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program 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
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Written by Jim Meyering. */
27 # define mempcpy(D, S, N) ((void *) ((char *) memcpy (D, S, N) + (N)))
33 # if !STDC_HEADERS && HAVE_MEMORY_H
49 #ifndef HAVE_DECL_MALLOC
50 "this configure-time declaration test was not run"
62 #include "path-concat.h"
64 /* Concatenate two pathname components, DIR and BASE, in
65 newly-allocated storage and return the result. Return 0 if out of
66 memory. Add a slash between DIR and BASE in the result if neither
67 would contribute one. If each would contribute at least one, elide
68 one from the end of DIR. Otherwise, simply concatenate DIR and
69 BASE. In any case, if BASE_IN_RESULT is non-NULL, set
70 *BASE_IN_RESULT to point to the copy of BASE in the returned
73 DIR may be NULL, BASE must not be.
75 Return NULL if memory is exhausted. */
78 path_concat (const char *dir
, const char *base
, char **base_in_result
)
87 p_concat
= strdup (base
);
89 *base_in_result
= p_concat
;
93 /* DIR is not empty. */
94 baselen
= base_len (base
);
95 dirlen
= strlen (dir
);
97 p_concat
= malloc (dirlen
+ baselen
+ 2);
101 p
= mempcpy (p_concat
, dir
, dirlen
);
103 if (FILESYSTEM_PREFIX_LEN (dir
) < dirlen
)
105 if (ISSLASH (*(p
- 1)) && ISSLASH (*base
))
107 else if (!ISSLASH (*(p
- 1)) && !ISSLASH (*base
))
108 *p
++ = DIRECTORY_SEPARATOR
;
114 memcpy (p
, base
, baselen
);
120 /* Same, but die when memory is exhausted. */
123 xpath_concat (const char *dir
, const char *base
, char **base_in_result
)
125 char *res
= path_concat (dir
, base
, base_in_result
);