blob: ce92310eaa7a139a4f15f5abd1cce28d1b826c6d [file] [log] [blame]
Eric Andersene5dfced2001-04-09 22:48:12 +00001/*
2 * busybox library eXtendet funcion
3 *
4 * concatenate path and file name to new allocation buffer,
5 * not addition '/' if path name already have '/'
6 *
7*/
8
9#include "libbb.h"
10
11extern char *concat_path_file(const char *path, const char *filename)
12{
13 char *outbuf;
14 int l;
15 int flg_slash = 1;
16
17 l = strlen(path);
Eric Andersen044a72d2001-05-04 22:04:24 +000018 if (l>0 && path[l-1] == '/')
Eric Andersene5dfced2001-04-09 22:48:12 +000019 flg_slash--;
20 l += strlen(filename);
Eric Andersen044a72d2001-05-04 22:04:24 +000021 if (l>0 && filename[0] == '/')
22 flg_slash--;
Eric Andersene5dfced2001-04-09 22:48:12 +000023 outbuf = xmalloc(l+1+flg_slash);
24 sprintf(outbuf, (flg_slash ? "%s/%s" : "%s%s"), path, filename);
25 return outbuf;
26}