#include <string.h>
Go to the source code of this file.
Defines | |
#define | INC_OSKI_MEMCPY_H |
oski/memcpy.h included. | |
#define | oski_CopyMem(dest, src, elem_type, num_elems) |
Copy a typed block of consecutive memory elements from one buffer to another. | |
Functions | |
char * | oski_DuplicateString (const char *s) |
Returns a newly allocated copy of the NULL-terminated string 's'. |
|
Value: memcpy((void *)(dest), (const void *)(src), \ (num_elems) * sizeof(elem_type)) This implementation is simply a wrapper around memcpy.
|
|
Returns a newly allocated copy of the NULL-terminated string 's'.
|