~ubuntu-branches/ubuntu/vivid/emscripten/vivid-proposed

« back to all changes in this revision

Viewing changes to system/include/libc/dirent.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2014-01-19 14:12:40 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140119141240-nfiw0p8033oitpfz
Tags: 1.9.0~20140119~7dc8c2f-1
* New snapshot release (Closes: #733714)
* Provide sources for javascript and flash. Done in orig-tar.sh
  Available in third_party/websockify/include/web-socket-js/src/
  (Closes: #735903)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _DIRENT_H_
2
 
#define _DIRENT_H_
 
1
#ifndef _DIRENT_H
 
2
#define _DIRENT_H
 
3
 
3
4
#ifdef __cplusplus
4
5
extern "C" {
5
6
#endif
6
7
 
7
 
#if !defined(MAXNAMLEN) && !defined(_POSIX_SOURCE)
8
 
#define MAXNAMLEN 1024
9
 
#endif
10
 
 
11
 
#include <sys/dirent.h>
 
8
#include <features.h>
 
9
 
 
10
#define __NEED_ino_t
 
11
#define __NEED_off_t
 
12
#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE)
 
13
#define __NEED_size_t
 
14
#endif
 
15
 
 
16
#include <bits/alltypes.h>
 
17
 
 
18
typedef struct __dirstream DIR;
 
19
 
 
20
struct dirent
 
21
{
 
22
        ino_t d_ino;
 
23
        off_t d_off;
 
24
        unsigned short d_reclen;
 
25
        unsigned char d_type;
 
26
        char d_name[256];
 
27
};
 
28
 
 
29
#define d_fileno d_ino
 
30
 
 
31
int            closedir(DIR *);
 
32
DIR           *fdopendir(int);
 
33
DIR           *opendir(const char *);
 
34
struct dirent *readdir(DIR *);
 
35
int            readdir_r(DIR *__restrict, struct dirent *__restrict, struct dirent **__restrict);
 
36
void           rewinddir(DIR *);
 
37
void           seekdir(DIR *, long);
 
38
long           telldir(DIR *);
 
39
int            dirfd(DIR *);
 
40
 
 
41
int alphasort(const struct dirent **, const struct dirent **);
 
42
int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct dirent **, const struct dirent **));
 
43
 
 
44
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
 
45
#define DT_UNKNOWN 0
 
46
#define DT_FIFO 1
 
47
#define DT_CHR 2
 
48
#define DT_DIR 4
 
49
#define DT_BLK 6
 
50
#define DT_REG 8
 
51
#define DT_LNK 10
 
52
#define DT_SOCK 12
 
53
#define DT_WHT 14
 
54
#define IFTODT(x) ((x)>>12 & 017)
 
55
#define DTTOIF(x) ((x)<<12)
 
56
int getdents(int, struct dirent *, size_t);
 
57
#endif
 
58
 
 
59
#ifdef _GNU_SOURCE
 
60
int versionsort(const struct dirent **, const struct dirent **);
 
61
#endif
 
62
 
 
63
#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
 
64
#define dirent64 dirent
 
65
#define readdir64 readdir
 
66
#define readdir64_r readdir_r
 
67
#define scandir64 scandir
 
68
#define alphasort64 alphasort
 
69
#define versionsort64 versionsort
 
70
#define off64_t off_t
 
71
#define ino64_t ino_t
 
72
#define getdents64 getdents
 
73
#endif
12
74
 
13
75
#ifdef __cplusplus
14
76
}
15
77
#endif
16
 
#endif /*_DIRENT_H_*/
 
78
 
 
79
#endif