note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
strcopy
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
warning
This function starts with a lowercase letter.
Description
Copies a string into the destination string.
Name | Description |
---|---|
dest[] | The string to copy the source string into. |
const source[] | The source string. |
maxlength = sizeof (dest) | The maximum length of the destination. (optional) |
Returns
The length of the new destination string.
Examples
new playerName[MAX_PLAYER_NAME];
GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
new string[64];
strcopy(string, playerName); // Copies playerName into string
Related Functions
- strcat: Concatenate two strings into a destination reference.