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

i get this error: gl_common.inc(5 : error 017: undefined symbol "token_by_delim"

i have an unedited version of gl_common.inc
Reply
#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
#3

Fixed it before sorry for not saying, thanks anyway.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)