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:
C/C++ Source or Header  |  1988-04-28  |  215 b   |  19 lines

  1.  
  2.  
  3. long Base;
  4.  
  5. main(ac,av)
  6. char *av[];
  7. {
  8.     int ver = atoi(av[1]);
  9.  
  10.     Base = OpenLibrary("dres.library", ver);
  11.     if (Base) {
  12.     CloseLibrary(Base);
  13.     puts("openned ok");
  14.     } else {
  15.     puts("open failed");
  16.     }
  17. }
  18.  
  19.