use #ifdef CONFIG_* instead of #if CONFIG_*
[oweals/busybox.git] / libbb / isdirectory.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Based in part on code from sash, Copyright (c) 1999 by David I. Bell 
6  * Permission has been granted to redistribute this code under the GPL.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <sys/stat.h>
26 #include "libbb.h"
27
28 /*
29  * Return TRUE if a fileName is a directory.
30  * Nonexistant files return FALSE.
31  */
32 int is_directory(const char *fileName, const int followLinks, struct stat *statBuf)
33 {
34         int status;
35         int didMalloc = 0;
36
37         if (statBuf == NULL) {
38             statBuf = (struct stat *)xmalloc(sizeof(struct stat));
39             ++didMalloc;
40         }
41
42         if (followLinks)
43                 status = stat(fileName, statBuf);
44         else
45                 status = lstat(fileName, statBuf);
46
47         if (status < 0 || !(S_ISDIR(statBuf->st_mode))) {
48             status = FALSE;
49         }
50         else status = TRUE;
51
52         if (didMalloc) {
53             free(statBuf);
54             statBuf = NULL;
55         }
56         return status;
57 }
58
59 /* END CODE */
60 /*
61 Local Variables:
62 c-file-style: "linux"
63 c-basic-offset: 4
64 tab-width: 4
65 End:
66 */