aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/include/sys/dirent.h
blob: dae324a7f6f65bb16d66681d485f79b22944fa43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* Posix dirent.h

   This software is a copyrighted work licensed under the terms of the
   Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
   details. */

/* Including this file should not require any Windows headers.  */

#ifndef _SYS_DIRENT_H
#define _SYS_DIRENT_H

#include <sys/cdefs.h>
#include <sys/types.h>
#include <limits.h>

#define __DIRENT_VERSION	3

/* Testing macros as per GLibC:
    _DIRENT_HAVE_D_NAMLEN == dirent has a d_namlen member
    _DIRENT_HAVE_D_OFF    == dirent has a d_off member
    _DIRENT_HAVE_D_RECLEN == dirent has a d_reclen member
    _DIRENT_HAVE_D_TYPE   == dirent has a d_type member
*/
#undef  _DIRENT_HAVE_D_NAMLEN
#undef  _DIRENT_HAVE_D_OFF
#define _DIRENT_HAVE_D_RECLEN
#define _DIRENT_HAVE_D_TYPE

struct dirent
{
  __uint32_t	__d_version;			/* Used internally */
  ino_t		d_ino;
  unsigned char	d_type;
  unsigned char	__d_unused1[1];
  __uint16_t	d_reclen;
  __uint32_t	__d_internal1;
  char		d_name[NAME_MAX + 1];
};

};

#define d_fileno d_ino			/* BSD compatible definition */

typedef struct __DIR DIR;

#if __BSD_VISIBLE
#ifdef _DIRENT_HAVE_D_TYPE
/* File types for `d_type'.  */
enum
{
  DT_UNKNOWN = 0,
# define DT_UNKNOWN     DT_UNKNOWN
  DT_FIFO = 1,
# define DT_FIFO        DT_FIFO
  DT_CHR = 2,
# define DT_CHR         DT_CHR
  DT_DIR = 4,
# define DT_DIR         DT_DIR
  DT_BLK = 6,
# define DT_BLK         DT_BLK
  DT_REG = 8,
# define DT_REG         DT_REG
  DT_LNK = 10,
# define DT_LNK         DT_LNK
  DT_SOCK = 12,
# define DT_SOCK        DT_SOCK
  DT_WHT = 14
# define DT_WHT         DT_WHT
};

/* Convert between stat structure types and directory types.  */
# define IFTODT(mode)		(((mode) & 0170000) >> 12)
# define DTTOIF(dirtype)        ((dirtype) << 12)
#endif /* _DIRENT_HAVE_D_TYPE */
#endif /* __BSD_VISIBLE */
#endif /*_SYS_DIRENT_H*/