Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>_exmback() free allocated memory</b> http://www.ousob.com [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
_exmback()         Free allocated memory


Syntax Usage:  #include         "extend.h"

               void             _exmback(pointer, bytes)

               unsigned char    *pointer;   Pointer from _exmgrab()
               unsigned int     bytes;      Size passed to _exmgrab()

Description:   _exmback() releases the memory allocated by _exmgrab().
               Note that the same pointer and size used in _exmgrab must
               be passed as parameters.


----------------------------------- Example --------------------------------

   size = 512;
   buff = _exmgrab(size);   /* allocate memory */
    if (buff)               /* if successful (!null) */
    check = TRUE;
   .
   .
   .
   if (check)
    _exmback(buff, size);   /* deallocate memory */


See Also: _exmgrab()

Online resources provided by: http://www.ousob.com --- NG 2 HTML conversion by Dave Pearson