busybox/libbb/concat_subpath_file.c

23 lines
518 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 source tree.
2003-05-26 19:37:50 +05:30
*/
#include "libbb.h"
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
*/
char* FAST_FUNC 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);
}