mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
3450636169
math suport, cleaner math syntax error checking, moves redundant signal string tables (from kill and ash) into libbb and provides a few cleanups elsewhere.
27 lines
543 B
C
27 lines
543 B
C
/*
|
|
* 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;
|
|
|
|
if (!path)
|
|
path="";
|
|
lc = last_char_is(path, '/');
|
|
while (*filename == '/')
|
|
filename++;
|
|
outbuf = xmalloc(strlen(path)+strlen(filename)+1+(lc==NULL));
|
|
sprintf(outbuf, "%s%s%s", path, (lc==NULL)? "/" : "", filename);
|
|
|
|
return outbuf;
|
|
}
|