1 /* path-concat.c -- concatenate two arbitrary pathnames
3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 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)))
44 #include "path-concat.h"
46 /* Concatenate two pathname components, DIR and BASE, in
47 newly-allocated storage and return the result. Return 0 if out of
48 memory. Add a slash between DIR and BASE in the result if neither
49 would contribute one. If each would contribute at least one, elide
50 one from the end of DIR. Otherwise, simply concatenate DIR and
51 BASE. In any case, if BASE_IN_RESULT is non-NULL, set
52 *BASE_IN_RESULT to point to the copy of BASE in the returned
55 DIR may be NULL, BASE must not be.
57 Return NULL if memory is exhausted. */
60 path_concat (const char *dir
, const char *base
, char **base_in_result
)
69 p_concat
= strdup (base
);
71 *base_in_result
= p_concat
;
75 /* DIR is not empty. */
76 baselen
= base_len (base
);
77 dirlen
= strlen (dir
);
79 p_concat
= malloc (dirlen
+ baselen
+ 2);
83 p
= mempcpy (p_concat
, dir
, dirlen
);
85 if (FILESYSTEM_PREFIX_LEN (dir
) < dirlen
)
87 if (ISSLASH (*(p
- 1)) && ISSLASH (*base
))
89 else if (!ISSLASH (*(p
- 1)) && !ISSLASH (*base
))
90 *p
++ = DIRECTORY_SEPARATOR
;
96 memcpy (p
, base
, baselen
);
102 /* Same, but die when memory is exhausted. */
105 xpath_concat (const char *dir
, const char *base
, char **base_in_result
)
107 char *res
= path_concat (dir
, base
, base_in_result
);