18.08.2015, 21:44
That's because the array size of inputtext is unknown, use that instead
Just to mention, a space (' ') isn't valid either, well you could simply add it if you want
pawn Код:
ValidateWord(const string[]) {
for( ; ; ) {
switch(string[0]) {
case 'a'..'z', '0'..'9', 'A'..'Z': {
#emit load.s.pri string
#emit add.c 4
#emit stor.s.pri string
}
case EOS: {
return true;
}
default: {
break;
}
}
}
return false;
}