home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Serving the Web
/
ServingTheWeb1995.disc1of1.iso
/
linux
/
slacksrce
/
d
/
perl
/
perl-4.000
/
perl-4
/
perl-4.036
/
msdos
/
glob.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-02-08
|
268 b
|
18 lines
/*
* Globbing for MS-DOS. Relies on the expansion done by the library
* startup code. (dds)
*/
#include <stdio.h>
#include <string.h>
main(int argc, char *argv[])
{
register i;
for (i = 1; i < argc; i++) {
fputs(strlwr(argv[i]), stdout);
putchar(0);
}
}