@BMEMCPY — Copies a series of
bytes in binary buffers.
Syntax:
%@BMEMCPY[src_bbuf,src_offset,dest_bbuf,dest_offset,size]
| src_bbuf | the handle of the binary buffer to copy from |
| src_offset | the location within the source buffer to copy from |
| dest_bbuf | the handle of the binary buffer to copy to; defaults to src_bbuf |
| dest_offset | the location within the destination buffer to copy to |
| size | the number of bytes to copy |
@BMEMCPY copies a series of bytes. It can copy within a single
buffer, or from one buffer to another.
After parsing and validating its arguments, this function just calls memcpy().