06.03.2010, 06:49
i get this error: gl_common.inc(5 : error 017: undefined symbol "token_by_delim"
i have an unedited version of gl_common.inc
i have an unedited version of gl_common.inc
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;
}