CHAT MAIOR

13 de abr. de 2011

[COD] StrCpy - Copiar String Pawn

strcpy


Esta função copia uma string a outra de forma fácil

stock strcpy(_sStr[],sStr_[]) // (strdestino, strsource)
{
_sStr[0x0] = '\0';
return strcat(_sStr,sStr_,strlen(sStr_));
}

Por DraKiNs ~ [iPs]TeaM

Um comentário:

Anônimo disse...

Are you retarded?, so you are adding the c-end character at the begin of the string, to do strcat?, is faster to just copy character per character...

Postar um comentário