home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
telecomm
/
nhclb120
/
td.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-09-26
|
307b
|
19 lines
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <stdio.h>
main(argc,argv)
int argc; char *argv[];
{
DIR *dirp;
struct dirent *dp;
dirp = opendir( "." );
while ( (dp = readdir( dirp )) != NULL )
{
printf("%s ", dp->d_name);
}
closedir( dirp );
}