nu_memmove

Moves bytes worth of data from src into dst.

src and dst needs to be allocated and within range.

export extern (C) @nogc nothrow @system pure
@weak
void*
nu_memmove
(
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.

Return Value

Type: void*

Pointer to dst

Meta