warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for 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.