C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
_freect
 Summary Example                         Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
     The _freect function tells you how much memory is available for
     dynamic memory allocation in the near heap. It does so by
     returning the approximate number of times your program can call
     _nmalloc (or malloc in small data models) to allocate an item
     <size> bytes long in the near heap (default data segment).
 
     Return Value
 
     The _freect function returns the number of calls as an unsigned
     integer.
                                    -♦-