Posts Tagged ‘memmove’

memmove, memset – byte string operations
USAGE
#include <string.h>

int bcmp(const void *s1, const void *s2, int n);

void bcopy(const void *src, void *dest, int n);

void bzero(void *s, int n);

[...]

Wednesday, August 26th, 2009 at 02:54 | Comments Off
Categories: M

bcopy – copy byte sequence
USAGE
#include <strings.h>

void bcopy(const void *src, void *dest, size_t n);

DESCRIPTION
The bcopy() function copies n bytes from src to dest. The result is
[...]

Wednesday, August 26th, 2009 at 02:44 | Comments Off
Categories: B
TOP