home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / AVAIL.C < prev    next >
Text File  |  2000-06-30  |  384b  |  17 lines

  1.  
  2. #define NOCCARGC
  3. extern char *_memptr;
  4. /*
  5. ** Return the number of bytes of available memory and if abort,
  6. ** abort with S if there aren't any
  7. */
  8. avail(abort) int abort; {
  9.   char x;
  10.   if(&x < _memptr) {
  11.     if(abort) exit ('M');
  12.     return (0);
  13.     }
  14.   return (&x - _memptr);
  15.   }
  16.  
  17.