8int wcstombs(
void* dst,
const void* src,
size_t len);
9int memcmp(
const void* str1,
const void* str2,
size_t len);
10void*
memchr(
const void* str,
int c,
size_t len);
11void*
memmove(
void* dst,
const void* src,
size_t len);
void * memchr(const void *str, int c, size_t len)
Definition cstring.c:47
int wcstombs(void *dst, const void *src, size_t len)
Definition cstring.c:8
void * memmove(void *dst, const void *src, size_t len)
Definition cstring.c:62
int memcmp(const void *str1, const void *str2, size_t len)
Definition cstring.c:28