home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Super PC 34
/
Super PC 34 (Shareware).iso
/
spc
/
UTIL
/
DJGPP2
/
V2
/
DJTST200.ZIP
/
tests
/
libc
/
dos
/
putpath.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-05-25
|
287 b
|
18 lines
#include <libc/dosio.h>
#include <go32.h>
#include <stdio.h>
int
main(int argc, char **argv)
{
int i;
for (i=0; i<argc; i++)
{
char buf[200];
_put_path(argv[i]);
dosmemget(__tb, 200, buf);
printf("`%s' -> `%s'\n", argv[i], buf);
}
return 0;
}