home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / bios / b_memsiz.txh < prev    next >
Encoding:
Text File  |  1995-10-09  |  409 b   |  24 lines

  1. @node _bios_memsize, bios
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <bios.h>
  6.  
  7. unsigned _bios_memsize(void);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function returns the amount of system memory in 1K blocks (up to
  13. 640K).
  14.  
  15. @subheading Return Value
  16.  
  17. Size of memory (in K).
  18.  
  19. @subheading Example
  20.  
  21. @example
  22. printf("This system has %d bytes of memory\n", _bios_memsize() * 1024);
  23. @end example
  24.