57 __depr(
"Unsafe. Use memcpy().");
76void *
memset4(
void *
s,
unsigned long c,
size_t count)
77 __depr(
"Unsafe. Use memset().");
95 __depr(
"Unsafe. Use memcpy().");
114void *
memset2(
void *
s,
unsigned short c,
size_t count)
Various common macros used throughout the codebase.
object * dest
Definition nehe26.c:54
void * memcpy2(void *dest, const void *src, size_t count)
Copy a block of memory, 2 bytes at a time.
void * memcpy4(void *dest, const void *src, size_t count)
Copy a block of memory, 4 bytes at a time.
void * memset2(void *s, unsigned short c, size_t count)
Set a block of memory, 2 bytes at a time.
void * memset4(void *s, unsigned long c, size_t count)
Set a block of memory, 4 bytes at a time.
rw_semaphore_t s
Definition rwsem_test.c:25
Variants on standard block memory copy/set functions.