1 /* path-concat.c -- concatenate two arbitrary pathnames
2 Copyright (C) 1996 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. */
27 /* Concatenate two pathname components, DIR and BASE, in newly-allocated
28 storage and return the result. Return 0 if out of memory. Add a slash
29 between DIR and BASE in the result if neither would contribute one.
30 If each would contribute at least one, elide one from the end of DIR.
31 Otherwise, simply concatenate DIR and BASE. In any case, if
32 BASE_IN_RESULT is non-NULL, set *BASE_IN_RESULT to point to the copy of
33 BASE in the returned concatenation. */
36 path_concat (const char *dir
, const char *base
, char **base_in_result
)
41 p_concat
= malloc (strlen (dir
) + strlen (base
) + 2);
45 p
= stpcpy (p_concat
, dir
);
47 if (*(p
- 1) == '/' && *base
== '/')
49 else if (*(p
- 1) != '/' && *base
!= '/')