module charge.sys.memheader
Source file for c memory allocation and tracking functions.
Code Map
//! Source file for c memory allocation and tracking functions.
module charge.sys.memheader;
fn cMemoryUsage() size_t { }
fn cMemoryPrintAll(sink: scope (Sink)) { }
fn cMalloc(size: size_t, file: const(char)*, line: u32) void* { }
fn cRealloc(ptr: void*, size: size_t, file: const(char)*, line: u32) void* { }
fn cFree(ptr: void*, file: const(char)*, line: u32) { }