2 errors
#1

how i fix them

Quote:

error 017: undefined symbol "ret_memcpy"
error 017: undefined symbol "isNumeric"

Reply
#2

Try this:

pawn Код:
#pragma unused ret_memcpy
And this:

pawn Код:
IsNumeric(const string[])
{
        for (new i = 0, j = strlen(string); i < j; i++)
        {
                if (string[i] > '9' || string[i] < '0') return 0;
        }
        return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)