22.07.2012, 12:31
How about using format instead and a stock?
or
pawn Код:
stock strcpy(dest[],src[],maxlength)
{
format(dest,maxlength,"%s",src);
return 1;
}
pawn Код:
#define strcpy(%0,%1,%2) \
format(%0,%2,"%s",#%1)

