sortix-mirror/libc/include/dirent.h

92 lines
2.5 KiB
C
Raw Normal View History

2012-09-28 22:36:46 +00:00
/*******************************************************************************
2015-05-10 21:40:54 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013, 2014, 2015.
This file is part of the Sortix C Library.
The Sortix C Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
The Sortix C Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
dirent.h
Format of directory entries.
2012-09-28 22:36:46 +00:00
*******************************************************************************/
2013-06-21 22:12:10 +00:00
#ifndef INCLUDE_DIRENT_H
#define INCLUDE_DIRENT_H
#include <sys/cdefs.h>
#include <sys/__/types.h>
2015-11-20 01:57:09 +00:00
#include <sortix/dirent.h>
2014-08-03 15:12:56 +00:00
#if defined(__is_sortix_libc)
#include <DIR.h>
#endif
2013-12-27 00:44:03 +00:00
#ifndef __DIR_defined
#define __DIR_defined
2015-05-10 21:40:54 +00:00
typedef struct __DIR DIR;
2013-12-27 00:44:03 +00:00
#endif
2015-11-20 01:57:09 +00:00
#ifdef __cplusplus
extern "C" {
2014-09-14 20:53:54 +00:00
#endif
2015-11-20 01:57:09 +00:00
int closedir(DIR*);
DIR* opendir(const char*);
struct dirent* readdir(DIR*);
void rewinddir(DIR*);
2014-09-14 20:53:54 +00:00
#if __USE_SORTIX || __USE_XOPEN
/* TODO: seekdir */
/* TODO: telldir */
2014-09-14 20:53:54 +00:00
#endif
/* Functions from POSIX 1995. */
#if 199506L <= __USE_POSIX
/* readdir_r will not be implemented. */
#endif
/* Functions from POSIX 2008. */
#if __USE_SORTIX || 200809L <= __USE_POSIX
int alphasort(const struct dirent**, const struct dirent**);
2015-11-20 01:57:09 +00:00
int dirfd(DIR*);
DIR* fdopendir(int);
2014-09-14 20:53:54 +00:00
int scandir(const char*, struct dirent***, int (*)(const struct dirent*),
int (*)(const struct dirent**, const struct dirent**));
#endif
/* Functions copied from elsewhere. */
#if __USE_SORTIX
2013-06-24 17:20:46 +00:00
int versionsort(const struct dirent**, const struct dirent**);
2014-09-14 20:53:54 +00:00
#endif
2014-09-14 20:53:54 +00:00
/* Functions that are Sortix extensions. */
#if __USE_SORTIX
2014-09-14 20:53:54 +00:00
int alphasort_r(const struct dirent**, const struct dirent**, void*);
int dscandir_r(DIR*, struct dirent***,
int (*)(const struct dirent*, void*),
void*,
int (*)(const struct dirent**, const struct dirent**, void*),
void*);
int versionsort_r(const struct dirent**, const struct dirent**, void*);
#endif
2015-05-13 16:11:02 +00:00
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif