copy
Syntax
native copy(dest[],len,const src[]);
Usage
| Parameter | Description |
|---|---|
| dest | Destination string buffer to copy to. |
| len | Destination buffer length. |
| src | Source string buffer to copy from. |
Description
Copies one string to another string.
Note
If the destination buffer is too small to hold the source string, the destination will be truncated.
Return
Number of cells written.