home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group15 / noglob.c < prev    next >
C/C++ Source or Header  |  1997-10-16  |  376b  |  23 lines

  1.  
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <windows.h>
  5.  
  6. /* This line turns off automatic command line globbing. */
  7. int _CRT_glob = 0;
  8.  
  9. int
  10. main (int argc, char* argv[])
  11. {
  12.     int    i;
  13.  
  14.     printf ("Command line (via GetCommandLine) \"%s\"\n",
  15.         GetCommandLine());
  16.     for (i = 0; i < argc; i++)
  17.     {
  18.         printf ("Argv[%d] \"%s\"\n", i, argv[i]);
  19.     }
  20.  
  21.     return 0;
  22. }
  23.