I advise you to use strcpy
Quote:
Originally Posted by Vince
I put this into the string.inc library:
pawn Код:
/* native strcpy(dest[], const source[], maxlength=sizeof dest); */
Function:
pawn Код:
stock strcpy(dest[], const source[], maxlength=sizeof dest) { strcat((dest[0] = EOS, dest), source, maxlength); }
|