home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
177.lha
/
DRes_v1.3
/
util
/
x.c
< prev
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
|
1988-04-28
|
215 b
|
19 lines
long Base;
main(ac,av)
char *av[];
{
int ver = atoi(av[1]);
Base = OpenLibrary("dres.library", ver);
if (Base) {
CloseLibrary(Base);
puts("openned ok");
} else {
puts("open failed");
}
}