Skip to main content

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.

NameDescription
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
  • strcat: Concatenate two strings into a destination reference.