56void *
memcpy4(
void *dest,
const void *src,
size_t count)
57 __depr(
"Unsafe. Use memcpy().");
76void *
memset4(
void *s,
unsigned long c,
size_t count)
77 __depr(
"Unsafe. Use memset().");
94void *
memcpy2(
void * dest,
const void *src,
size_t count)
95 __depr(
"Unsafe. Use memcpy().");
114void *
memset2(
void *s,
unsigned short c,
size_t count)
#define __depr(m)
Mark something as deprecated, with an informative message.
Definition cdefs.h:119
void * memcpy2(void *dest, const void *src, size_t count) __depr("Unsafe. Use memcpy().")
Copy a block of memory, 2 bytes at a time.
void * memcpy4(void *dest, const void *src, size_t count) __depr("Unsafe. Use memcpy().")
Copy a block of memory, 4 bytes at a time.
void * memset4(void *s, unsigned long c, size_t count) __depr("Unsafe. Use memset().")
Set a block of memory, 4 bytes at a time.
void * memset2(void *s, unsigned short c, size_t count) __depr("Unsafe.")
Set a block of memory, 2 bytes at a time.
Variants on standard block memory copy/set functions.