undefined symbol "split"
#2

Код:
stock split(const strsrc[], strdest[][], delimiter)
{
	new i, li;
	new aNum;
	new len;
	while(i <= strlen(strsrc)){
	    if(strsrc[i]==delimiter || i==strlen(strsrc)){
	        len = strmid(strdest[aNum], strsrc, li, i, 128);
	        strdest[aNum][len] = 0;
	        li = i+1;
	        aNum++;
		}
		i++;
	}
	return 1;
}
Reply


Messages In This Thread
undefined symbol "split" - by eDz0r - 03.12.2010, 18:36
Re: undefined symbol "split" - by blackwave - 03.12.2010, 18:41
Re: undefined symbol "split" - by ExEx - 03.12.2010, 18:42
Re: undefined symbol "split" - by eDz0r - 03.12.2010, 18:44

Forum Jump:


Users browsing this thread: 1 Guest(s)