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
|
memsetFormat#include <string.h> void memset (void* dst, int c, size_t count); Arguments
The pointer to the destination What This Function Does It writes the single character (byte) specified by c over and over to the area specified by dst for the number of bytes specified by count. Note This standard function comes with NuSystem.
|