repo.or.cz
/
neatlibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
stdio: fix reading integer length modifiers
[neatlibc.git]
/
dirent.h
blob
c3876173c4d6870e4458fdb62ebe9cda40756abe
1
typedef
struct
__dirent_dir
DIR
;
2
3
struct
dirent
{
4
unsigned long
d_ino
;
5
unsigned long
d_off
;
6
unsigned short
d_reclen
;
7
char
d_name
[
256
];
8
};
9
10
DIR
*
opendir
(
char
*
path
);
11
int
closedir
(
DIR
*
dir
);
12
struct
dirent
*
readdir
(
DIR
*
dir
);