Andrej Mitrovic: > Right, haven't thought about the C functions at all (silly me). > Thanks, this did the trick: > extern (C) void* memcpy(void*, const void*, size_t);
Maybe you are able to wrap that memcpy in a templated D function (named copyMemory) that does what you want in a bit safer way, that contains some static and runtime asserts, etc. Bye, bearophile
