1 /* path-concat.c -- concatenate two arbitrary pathnames
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Jim Meyering. */
25 # define mempcpy(D, S, N) ((void *) ((char *) memcpy (D, S, N) + (N)))
31 # if !STDC_HEADERS && HAVE_MEMORY_H
47 #ifndef HAVE_DECL_MALLOC
48 "this configure-time declaration test was not run"
58 #ifndef DIRECTORY_SEPARATOR
59 # define DIRECTORY_SEPARATOR '/'
62 #ifndef FILESYSTEM_PREFIX_LEN
63 # define FILESYSTEM_PREFIX_LEN(Filename) 0
67 # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR)
71 #include "path-concat.h"
73 /* Concatenate two pathname components, DIR and BASE, in
74 newly-allocated storage and return the result. Return 0 if out of
75 memory. Add a slash between DIR and BASE in the result if neither
76 would contribute one. If each would contribute at least one, elide
77 one from the end of DIR. Otherwise, simply concatenate DIR and
78 BASE. In any case, if BASE_IN_RESULT is non-NULL, set
79 *BASE_IN_RESULT to point to the copy of BASE in the returned
82 DIR may be NULL, BASE must not be.
84 Return NULL if memory is exhausted. */
87 path_concat (const char *dir
, const char *base
, char **base_in_result
)
96 p_concat
= strdup (base
);
98 *base_in_result
= p_concat
;
102 /* DIR is not empty. */
103 base_len
= strlen (base
);
104 dir_len
= strlen (dir
);
106 p_concat
= malloc (dir_len
+ base_len
+ 2);
110 p
= mempcpy (p_concat
, dir
, dir_len
);
112 if (dir_len
> FILESYSTEM_PREFIX_LEN (dir
))
114 if (ISSLASH (*(p
- 1)) && ISSLASH (*base
))
116 else if (!ISSLASH (*(p
- 1)) && !ISSLASH (*base
))
117 *p
++ = DIRECTORY_SEPARATOR
;
123 memcpy (p
, base
, base_len
+ 1);
128 /* Same, but die when memory is exhausted. */
131 xpath_concat (const char *dir
, const char *base
, char **base_in_result
)
133 char *res
= path_concat (dir
, base
, base_in_result
);