memcpy

Description

Copy data from source RAM location to destination RAM location

Definition

memcpy(char *dst, char *src, char len)

Library

LIB/str_lib.bas

Usage

On entry:
dst is a pointer to a RAM buffer holding the destination string src is a pointer to a RAM buffer holding the source string
cnt is the number of bytes to be copied
On exit:
There is no return value