- public void* @set (void* dest, int src, size_t n)
Copies src into each of the first count characters of the object pointed to
by dest.
- public int cmp (void* s1, void* s2, size_t n)
Copies count characters from the object pointed to by src to the object
pointed to by dest.
- public void* copy (void* dest, void* src, size_t n)
Copies count characters from the object pointed to by src to the object
pointed to by dest.
- public void* dup (void* mem, uint n)
Allocates byte_size
bytes of memory, and copies byte_size
bytes into it from mem
.
- public void* dup2 (void* mem, size_t n)
Allocates byte_size
bytes of memory, and copies byte_size
bytes into it from mem
.
- public void* move (void* dest, void* src, size_t n)