Signature
native copy(dest[], len, const src[]);
Description
Copies one string to another string.
Notes
-
If the destination buffer is too small to hold the source string, the
destination will be truncated.
Parameters
- dest — Destination string buffer to copy to.
- len — Destination buffer length.
- src — Source string buffer to copy from.
Returns
Number of cells written.