1994-05-24 09:57:34 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2010-02-16 19:39:50 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-24 09:57:34 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1997-03-11 11:15:46 +00:00
|
|
|
* @(#)dirent.h 8.2 (Berkeley) 7/28/94
|
1999-11-28 05:38:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 09:57:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DIRENT_H_
|
|
|
|
#define _DIRENT_H_
|
|
|
|
|
|
|
|
/*
|
1995-05-30 05:05:38 +00:00
|
|
|
* The kernel defines the format of directory entries returned by
|
1994-05-24 09:57:34 +00:00
|
|
|
* the getdirentries(2) system call.
|
|
|
|
*/
|
2002-09-10 18:12:16 +00:00
|
|
|
#include <sys/cdefs.h>
|
1994-05-24 09:57:34 +00:00
|
|
|
#include <sys/dirent.h>
|
|
|
|
|
2014-05-11 13:48:21 +00:00
|
|
|
#if __XSI_VISIBLE
|
2002-09-10 18:12:16 +00:00
|
|
|
/*
|
|
|
|
* XXX this is probably illegal in the __XSI_VISIBLE case, but brings us closer
|
|
|
|
* to the specification.
|
|
|
|
*/
|
|
|
|
#define d_ino d_fileno /* backward and XSI compatibility */
|
|
|
|
#endif
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2002-09-10 18:12:16 +00:00
|
|
|
#if __BSD_VISIBLE
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2003-12-07 21:10:06 +00:00
|
|
|
#include <sys/_null.h>
|
|
|
|
|
1994-05-24 09:57:34 +00:00
|
|
|
/* definitions for library routines operating on directories. */
|
|
|
|
#define DIRBLKSIZ 1024
|
|
|
|
|
2012-05-19 12:44:27 +00:00
|
|
|
struct _dirdesc;
|
|
|
|
typedef struct _dirdesc DIR;
|
1994-05-24 09:57:34 +00:00
|
|
|
|
1997-03-11 11:15:46 +00:00
|
|
|
/* flags for opendir2 */
|
|
|
|
#define DTF_HIDEW 0x0001 /* hide whiteout entries */
|
|
|
|
#define DTF_NODUP 0x0002 /* don't return duplicate names */
|
|
|
|
#define DTF_REWIND 0x0004 /* rewind after reading union stack */
|
|
|
|
#define __DTF_READALL 0x0008 /* everything has been read */
|
2014-07-11 16:16:26 +00:00
|
|
|
#define __DTF_SKIPREAD 0x0010 /* assume internal buffer is populated */
|
1997-03-11 11:15:46 +00:00
|
|
|
|
2002-09-10 18:12:16 +00:00
|
|
|
#else /* !__BSD_VISIBLE */
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2002-09-10 18:12:16 +00:00
|
|
|
typedef void * DIR;
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2002-09-10 18:12:16 +00:00
|
|
|
#endif /* __BSD_VISIBLE */
|
|
|
|
|
|
|
|
#ifndef _KERNEL
|
1994-05-24 09:57:34 +00:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
2010-01-05 20:17:13 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE >= 700
|
|
|
|
int alphasort(const struct dirent **, const struct dirent **);
|
2012-05-19 12:44:27 +00:00
|
|
|
int dirfd(DIR *);
|
2010-01-05 20:17:13 +00:00
|
|
|
#endif
|
2002-09-10 18:12:16 +00:00
|
|
|
#if __BSD_VISIBLE
|
|
|
|
DIR *__opendir2(const char *, int);
|
2013-08-18 20:11:34 +00:00
|
|
|
int fdclosedir(DIR *);
|
2002-09-10 18:12:16 +00:00
|
|
|
int getdents(int, char *, int);
|
|
|
|
int getdirentries(int, char *, int, long *);
|
|
|
|
#endif
|
2002-09-09 03:52:43 +00:00
|
|
|
DIR *opendir(const char *);
|
2008-04-16 18:59:36 +00:00
|
|
|
DIR *fdopendir(int);
|
2002-09-09 03:52:43 +00:00
|
|
|
struct dirent *
|
|
|
|
readdir(DIR *);
|
2002-09-10 18:12:16 +00:00
|
|
|
#if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 500
|
|
|
|
int readdir_r(DIR *, struct dirent *, struct dirent **);
|
|
|
|
#endif
|
2002-09-09 03:52:43 +00:00
|
|
|
void rewinddir(DIR *);
|
2010-01-05 20:17:13 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE >= 700
|
2002-09-09 03:52:43 +00:00
|
|
|
int scandir(const char *, struct dirent ***,
|
2010-01-04 15:40:17 +00:00
|
|
|
int (*)(const struct dirent *), int (*)(const struct dirent **,
|
|
|
|
const struct dirent **));
|
2014-04-02 16:07:48 +00:00
|
|
|
#ifdef __BLOCKS__
|
|
|
|
int scandir_b(const char *, struct dirent ***,
|
|
|
|
int (^)(const struct dirent *),
|
|
|
|
int (^)(const struct dirent **, const struct dirent **));
|
|
|
|
#endif
|
2002-09-10 18:12:16 +00:00
|
|
|
#endif
|
|
|
|
#if __XSI_VISIBLE
|
|
|
|
void seekdir(DIR *, long);
|
|
|
|
long telldir(DIR *);
|
|
|
|
#endif
|
|
|
|
int closedir(DIR *);
|
1994-05-24 09:57:34 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
1999-12-29 05:07:58 +00:00
|
|
|
#endif /* !_KERNEL */
|
1994-05-24 09:57:34 +00:00
|
|
|
|
|
|
|
#endif /* !_DIRENT_H_ */
|