'Ask' Command Not Displaying Correctly?
#3

pawn Код:
stock bigstr(const string[], &idx)
{
  new length = strlen(string);
    while ((idx < length) && (string[idx] <= ' '))
    {
        idx++;
    }
    new offset = idx;
    new result[64];
    while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
    {
        result[idx - offset] = string[idx];
        idx++;
    }
    result[idx - offset] = EOS;
    return result;
}
Reply


Messages In This Thread
'Ask' Command Not Displaying Correctly? - by Alec24 - 15.03.2009, 02:42
Re: 'Ask' Command Not Displaying Correctly? - by Zoopaman - 15.03.2009, 03:08
Re: 'Ask' Command Not Displaying Correctly? - by Danut - 15.03.2009, 08:07
Re: 'Ask' Command Not Displaying Correctly? - by Alec24 - 15.03.2009, 11:48
Re: 'Ask' Command Not Displaying Correctly? - by Alec24 - 15.03.2009, 15:16
Re: 'Ask' Command Not Displaying Correctly? - by Weirdosport - 15.03.2009, 15:22
Re: 'Ask' Command Not Displaying Correctly? - by Alec24 - 15.03.2009, 15:27
Re: 'Ask' Command Not Displaying Correctly? - by Weirdosport - 15.03.2009, 15:28
Re: 'Ask' Command Not Displaying Correctly? - by Alec24 - 15.03.2009, 15:40
Re: 'Ask' Command Not Displaying Correctly? - by Weirdosport - 15.03.2009, 15:43

Forum Jump:


Users browsing this thread: 1 Guest(s)