mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
f282c6b657
function old new delta send_cgi_and_exit 892 890 -2 ln_main 447 445 -2 handle_incoming_and_exit 2784 2780 -4 is_directory 66 59 -7 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/6 up/down: 2/-19) Total: -15 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
32 lines
675 B
C
32 lines
675 B
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* Utility routines.
|
|
*
|
|
* Based in part on code from sash, Copyright (c) 1999 by David I. Bell
|
|
* Permission has been granted to redistribute this code under GPL.
|
|
*
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
*/
|
|
|
|
#include <sys/stat.h>
|
|
#include "libbb.h"
|
|
|
|
/*
|
|
* Return TRUE if fileName is a directory.
|
|
* Nonexistent files return FALSE.
|
|
*/
|
|
int FAST_FUNC is_directory(const char *fileName, int followLinks)
|
|
{
|
|
int status;
|
|
struct stat statBuf;
|
|
|
|
if (followLinks)
|
|
status = stat(fileName, &statBuf);
|
|
else
|
|
status = lstat(fileName, &statBuf);
|
|
|
|
status = (status == 0 && S_ISDIR(statBuf.st_mode));
|
|
|
|
return status;
|
|
}
|