⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (189 Bytes)
Bug #9409
» test.c
ganaware (Nayuta Taga)
, 01/15/2014 02:00 AM
#include
<dirent.h>
#include
<stdio.h>
int
main
()
{
struct
dirent
*
d
;
DIR
*
dir
=
opendir
(
"."
);
while
((
d
=
readdir
(
dir
)))
{
printf
(
"%s
\n
"
,
d
->
d_name
);
}
closedir
(
dir
);
return
0
;
}
(1-1/1)
Loading...