source: CMT/v1r12p20020606/Visual/tdir.cxx @ 1

Last change on this file since 1 was 1, checked in by arnault, 19 years ago

Import all tags

File size: 254 bytes
Line 
1#include <stdio.h> 
2#include <direct.h> 
3 
4int main (int argc, char* argv[]) 
5{ 
6        argc--; 
7        argv++; 
8        while (argc > 0) 
9        { 
10                int status = _chdir (argv[0]); 
11                printf ("status = %d\n", status); 
12                argc--; 
13                argv++; 
14        } 
15        return (0); 
16} 
Note: See TracBrowser for help on using the repository browser.