2003-05-26 19:37:50 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
|
|
|
* Copyright (C) (C) 2003 Vladimir Oleynik <dzo@simtreas.ru>
|
|
|
|
*
|
2006-07-10 17:11:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2003-05-26 19:37:50 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
This function make special for recursive actions with usage
|
|
|
|
concat_path_file(path, filename)
|
2006-12-26 09:06:28 +05:30
|
|
|
and skipping "." and ".." directory entries
|
2003-05-26 19:37:50 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
char* FAST_FUNC concat_subpath_file(const char *path, const char *f)
|
2003-05-26 19:37:50 +05:30
|
|
|
{
|
2007-04-14 05:29:52 +05:30
|
|
|
if (f && DOT_OR_DOTDOT(f))
|
2003-05-26 19:37:50 +05:30
|
|
|
return NULL;
|
|
|
|
return concat_path_file(path, f);
|
|
|
|
}
|