- addRange
void addRange(const(void)* p, size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
- check
void* check(void* p)
Check p for null. If it is, issue out of memory error
and exit program.
- disableGC
void disableGC()
Undocumented in source. Be warned that the author may not have intended to support it.
- error
void* error()
Undocumented in source. Be warned that the author may not have intended to support it.
- isGCEnabled
bool isGCEnabled()
Undocumented in source. Be warned that the author may not have intended to support it.
- removeRange
void removeRange(const(void)* p)
Undocumented in source. Be warned that the author may not have intended to support it.
- xcalloc
void* xcalloc(size_t size, size_t n)
Undocumented in source. Be warned that the author may not have intended to support it.
- xcalloc_noscan
void* xcalloc_noscan(size_t size, size_t n)
Undocumented in source. Be warned that the author may not have intended to support it.
- xfree
void xfree(void* p)
Undocumented in source. Be warned that the author may not have intended to support it.
- xmalloc
void* xmalloc(size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
- xmalloc_noscan
void* xmalloc_noscan(size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
- xrealloc
void* xrealloc(void* p, size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
- xrealloc_noscan
void* xrealloc_noscan(void* p, size_t size)
Undocumented in source. Be warned that the author may not have intended to support it.
- xstrdup
char* xstrdup(const(char)* s)
Undocumented in source. Be warned that the author may not have intended to support it.