hush/libbb/concat_subpath_file.c

24 lines
517 B
C
Raw Normal View History

2003-05-26 14:07:50 +00:00
/* 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 14:07:50 +00:00
*/
/*
This function make special for recursive actions with usage
concat_path_file(path, filename)
2006-12-26 03:36:28 +00:00
and skipping "." and ".." directory entries
2003-05-26 14:07:50 +00:00
*/
#include "libbb.h"
char *concat_subpath_file(const char *path, const char *f)
2003-05-26 14:07:50 +00:00
{
if (f && DOT_OR_DOTDOT(f))
2003-05-26 14:07:50 +00:00
return NULL;
return concat_path_file(path, f);
}