30.05.2014, 10:34
What is correct macro for strcpy? In YSI (y_utils) I can see:
But here on forums I found:
What is difference?
pawn Код:
#define strcpy(%0,%1) strcat((%0[0] = '\0', %0), %1)
pawn Код:
#define strcpy(%0,%1,%2) strcat((%0[0] = '\0', %0), %1, %2)