perl 3.0 patch #22 patch #19, continued
[p5sagit/p5-mst-13.2.git] / msdos / glob.c
CommitLineData
b1248f16 1/*
2 * Globbing for MS-DOS. Relies on the expansion done by the library
3 * startup code. (dds)
4 */
5
6#include <stdio.h>
7#include <string.h>
8
9main(int argc, char *argv[])
10{
11 register i;
12
13 for (i = 1; i < argc; i++) {
14 fputs(strlwr(argv[i]), stdout);
15 putchar(0);
16 }
17}