Posts Tagged ‘strncpy’

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