SynopsisFree a dynamic block of memory allocated with balloc. Prototypes#include "webs.h" void bfree(B_ARGS_DEC, void *buf); Parameters
DescriptionThe bfree procedure releases a block of memory back to the balloc free queues. Memory is not actually freed to the operating system, but is kept locally for future use. Use B_L as the first argument to bfree to provide the source file name and line number arguments. Return ValueNo return value. Examplebfree(B_L, buf); Stability ClassificationStable. See Also |