busybox/libbb/concat_subpath_file.c

24 lines
517 B
C
Raw Normal View History

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>
*
* 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"
char *concat_subpath_file(const char *path, const char *f)
2003-05-26 19:37:50 +05:30
{
if (f && DOT_OR_DOTDOT(f))
2003-05-26 19:37:50 +05:30
return NULL;
return concat_path_file(path, f);
}