MBKREALLOC(3) | MBK UTILITY FUNCTIONS | MBKREALLOC(3) |
mbkrealloc - mbk memory reallocator
See the file buster/alliance/alc_origin.1.en.gz.
#include "mut.h" void ∗mbkrealloc(pt, bytes) void ∗pt; unsigned int bytes;
mbkrealloc returns a block of bytes length, for any purpose. It increases or decreases the size of the area, and return a pointer to the new block. It is now a day only an encapsulation of the system realloc function, but may evolve to a special allocator in the future. Its use is strongly encouraged.
mbkrealloc returns a pointer to a bytes long block.
"∗∗∗ mbk error ∗∗∗ mbkrealloc impossible : not enough memory"
#include "mut.h" char ∗concatstring(t, s); { t = (char ∗)mbkrealloc(strlen(t) + strlen(s) + 1); strcat(t, s); return t; }
mbk(1), mbkalloc(3), mbkfree(3).
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |