ansideclify
[gnulib.git] / lib / path-concat.c
1 /* path-concat.c -- concatenate two arbitrary pathnames
2    Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3
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)
7    any later version.
8
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.
13
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.  */
17
18 /* Written by Jim Meyering.  */
19
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #ifndef HAVE_MEMPCPY
25 # define mempcpy(D, S, N) ((void *) ((char *) memcpy (D, S, N) + (N)))
26 #endif
27
28 #include <stdio.h>
29 #if HAVE_STRING_H
30 # include <string.h>
31 #endif
32 #include <sys/types.h>
33
34 char *malloc ();
35
36 /* Concatenate two pathname components, DIR and BASE, in newly-allocated
37    storage and return the result.  Return 0 if out of memory.  Add a slash
38    between DIR and BASE in the result if neither would contribute one.
39    If each would contribute at least one, elide one from the end of DIR.
40    Otherwise, simply concatenate DIR and BASE.  In any case, if
41    BASE_IN_RESULT is non-NULL, set *BASE_IN_RESULT to point to the copy of
42    BASE in the returned concatenation.  */
43
44 char *
45 path_concat (const char *dir, const char *base, char **base_in_result)
46 {
47   char *p;
48   char *p_concat;
49   size_t base_len = strlen (base);
50   size_t dir_len = strlen (dir);
51
52   p_concat = malloc (dir_len + base_len + 2);
53   if (!p_concat)
54     return 0;
55
56   p = mempcpy (p_concat, dir, dir_len);
57
58   if (*(p - 1) == '/' && *base == '/')
59     --p;
60   else if (*(p - 1) != '/' && *base != '/')
61     *p++ = '/';
62
63   if (base_in_result)
64     *base_in_result = p;
65
66   memcpy (p, base, base_len + 1);
67
68   return p_concat;
69 }