home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG5_11.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  2.1 KB  |  64 lines

  1. /*Program 5_11 - Get disk and memory information
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Get the current disk and memory information and display in
  5.   a comfortable format
  6. */
  7.  
  8. #include <stdio.h>
  9. #include <dos.h>
  10. #include <alloc.h>
  11.  
  12. #define membios 0x12
  13.  
  14. /*allocate some local structures*/
  15.  
  16. struct dfree dfres;                    /*for the getdfree() call*/
  17. union REGS regs;                       /*for the int86() call*/
  18.  
  19. /*Main - perform the necessary system calls and format the
  20.          results for output*/
  21. int main ()
  22. {
  23.      long totdisk, availdisk, totmem, availmem;
  24.      unsigned currseg;
  25.      double percentdisk, percentmem;
  26.  
  27.      /*first accumulate the information*/
  28.      getdfree (0, &dfres);             /*uses system call 0x36*/
  29.      availdisk = (long)dfres.df_avail * (long)dfres.df_sclus *
  30.                  (long)dfres.df_bsec;
  31.      totdisk =   (long)dfres.df_total * (long)dfres.df_sclus *
  32.                  (long)dfres.df_bsec;
  33.      percentdisk = ((double)availdisk / (double)totdisk) * (double)100.;
  34.  
  35.      int86 (membios, ®s, ®s);    /*use BIOS call 0x12*/
  36.      totmem   = (long)regs.x.ax * (long)1024;
  37.      availmem = (long)farcoreleft ();
  38.      percentmem = ((double)availmem / (double)totmem) * (double)100.;
  39.  
  40.      currseg = FP_SEG ((int (far *)())main);
  41.  
  42.      /*now print these values out in a reasonable form*/
  43.      printf ("Display available disk and memory\n"
  44.              "\n"
  45.              "Disk:\n"
  46.              "   %9ld bytes available (%6ldk)\n"
  47.              "   %9ld bytes total     (%6ldk)\n"
  48.              "   (%2.0f%% free)\n"
  49.              "\n"
  50.              "Memory:\n"
  51.              "   %7ld bytes available (%4ldk)\n"
  52.              "   %7ld bytes total     (%4ldk)\n"
  53.              "   (%2.0f%% free)\n"
  54.              "\n"
  55.              "Current segment is %X\n",
  56.                  availdisk, availdisk / (long)1024,
  57.                  totdisk,   totdisk   / (long)1024,
  58.                  percentdisk,
  59.                  availmem,  availmem  / (long)1024,
  60.                  totmem,    totmem    / (long)1024,
  61.                  percentmem,
  62.                  currseg);
  63. }
  64.