nu_memcpy

Copies bytes worth of data from src into dst.

src and dst needs to be allocated and within range, additionally the source and destination may not overlap.

export extern (C) @nogc nothrow @system pure
@weak
void*
nu_memcpy
(
return scope void* dst
,
scope const void* src
,
size_t bytes
)

Parameters

dst void*

Destination of the memory copy operation.

src void*

Source of the memory copy operation

bytes size_t

The amount of bytes to copy.

Meta