aboutsummaryrefslogtreecommitdiff
path: root/libbb/concat_path_file.c
blob: 61efa9c3e16ac7ab13fdbe3f8ec0125c727425e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * busybox library eXtendet funcion
 *
 * concatenate path and file name to new allocation buffer,
 * not addition '/' if path name already have '/'
 *
*/

#include <string.h>
#include "libbb.h"

extern char *concat_path_file(const char *path, const char *filename)
{
	char *outbuf;
	char *lc;
	
	lc = last_char_is(path, '/');
	if (filename[0] == '/')
		filename++;
	outbuf = xmalloc(strlen(path)+strlen(filename)+1+(lc==NULL));
	sprintf(outbuf, (lc==NULL ? "%s/%s" : "%s%s"), path, filename);
	return outbuf;
}