nu_memset

Fills dst with bytes amount of values.

export extern (C) @nogc nothrow @system pure
@weak
void*
nu_memset
(
return scope void* dst
,
ubyte value
,
size_t bytes
)

Parameters

dst void*

Destination of the memory copy operation.

value ubyte

The byte to repeatedly copy to the memory starting at dst

bytes size_t

The amount of bytes to write.

Return Value

Type: void*

Pointer to dst

Meta