blob: 66570bca6c495548a1cebe36732c4fb4d8abdbe2 (
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
|
header: dirent.h
standards:
- posix
types:
- type_name: struct_dirent
- type_name: DIR
- type_name: ino_t
functions:
- name: alphasort
standards:
- posix
return_type: int
arguments:
- type: const struct dirent **
- type: const struct dirent **
- name: closedir
standards:
- posix
return_type: int
arguments:
- type: DIR *
- name: dirfd
standards:
- posix
return_type: int
arguments:
- type: DIR *
- name: fdopendir
standards:
- posix
return_type: DIR *
arguments:
- type: int
- name: opendir
standards:
- posix
return_type: DIR *
arguments:
- type: const char *
- name: readdir
standards:
- posix
return_type: struct dirent *
arguments:
- type: DIR *
|