27.05.2013, 00:11
Quando eu compilo da esses erros:
.pwn(2190) : error 025: function heading differs from prototype
.pwn(2191) : error 021: symbol already defined: "IsNumeric"
linhas:
inteira
.pwn(2190) : error 025: function heading differs from prototype
.pwn(2191) : error 021: symbol already defined: "IsNumeric"
linhas:
pawn Код:
stock IsNumeric(const string[])
{
pawn Код:
stock IsNumeric(const string[])
{
for (new i = 0, j = strlen(string); i < j; i++)
if(string[i] > '9' || string[i] < '0') return 0;
return 1;
}