[Error] gl_common.inc(58) : error 017: undefined symbol "token_by_delim"
#2

pawn Код:
stock token_by_delim(const string[], return_str[], delim, start_index)
{
    new x=0;
    while(string[start_index] != EOS && string[start_index] != delim) {
      return_str[x] = string[start_index];
      x++;
      start_index++;
    }
    return_str[x] = EOS;
    if(string[start_index] == EOS) start_index = (-1);
    return start_index;
}
Reply


Messages In This Thread
[Error] gl_common.inc(58) : error 017: undefined symbol "token_by_delim" - by cozza123456 - 06.03.2010, 06:49
Re: [Error] gl_common.inc(58) : error 017: undefined symbol "token_by_delim" - by SlashPT - 06.03.2010, 09:01
Re: [Error] gl_common.inc(58) : error 017: undefined symbol "token_by_delim" - by cozza123456 - 06.03.2010, 09:26

Forum Jump:


Users browsing this thread: 2 Guest(s)