One simple error
#3

try removing the bracket above
pawn Код:
strtok(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' ')) index++;
    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
    return 0; //ERROR HERE!!!!!!!!!!!!!!!!!
}
Reply


Messages In This Thread
One simple error - by Twinki1993 - 25.02.2012, 21:09
Re: One simple error - by GtasaPoliceModz - 25.02.2012, 21:13
Re: One simple error - by Tanush123 - 25.02.2012, 21:13
Re: One simple error - by Twinki1993 - 25.02.2012, 21:15
Re: One simple error - by GtasaPoliceModz - 25.02.2012, 21:16
Re: One simple error - by Twinki1993 - 25.02.2012, 21:18
Re: One simple error - by GtasaPoliceModz - 25.02.2012, 21:19

Forum Jump:


Users browsing this thread: 1 Guest(s)