home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 21 / CD_ASCQ_21_040595.iso / dos / prg / c / freedos3 / source / com020 / testenv.c < prev    next >
Text File  |  1995-01-15  |  328b  |  17 lines

  1. int main (int argc, char *argv[], char *env[])
  2. {
  3.    int count;
  4.  
  5.    puts ("Commandline:");
  6.  
  7.    for (count = 0; count < argc; count++)
  8.       printf ("%d: %s\n", count, argv[count]);
  9.  
  10.    puts ("\nEnvironment:");
  11.  
  12.    for (count = 0; env[count]; count++)
  13.       printf ("%d: %s\n", count, env[count]);
  14.  
  15.    return 0;
  16. }
  17.