home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / src / perl / msdos / glob.c < prev    next >
C/C++ Source or Header  |  1992-04-11  |  268b  |  18 lines

  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.  
  9. main(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. }
  18.