#include <revolution/net.h>
void* NETMemSet( void* buf, int ch, size_t size );
| buf | Address of the region to be set |
| ch | The character to be set (8-bit) |
| size | The size to be set (in bytes) |
Returns buf as is.
Embeds the size in bytes from the address specified by buf using characters specified by ch.
If ch is zero, this runs at high speed compared to when another value is set.
2008/08/29 Initial version.
CONFIDENTIAL