al - Audio Library Functions gDP - DP GBI Macros gdSP - General GBI Macros gSP - SP GBI Macros gt - Turbo Microcode RDP gu - Graphics Utilities Math - Math Functions nuSys - NuSystem os - N64 Operating System sp - Sprite Library Functions uh - Host to Target IO 64DD - N64 Disk Drive
|
memmoveFormat#include <string.h> void *memmove (void *dest, const void *src, size_t count); Arguments
The pointer to the destination What This Function Does It copies the content of scr to dest for the number of bytes specified by count. It will be copied correctly even if the areas of the source and the destination overlap. Note This standard function comes with NuSystem.
|