Subversion Repositories Kolibri OS

Rev

Rev 3128 | Rev 3363 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3128 Rev 3225
Line 208... Line 208...
208
	}
208
	}
209
	return 0;
209
	return 0;
210
}
210
}
Line 211... Line 211...
211
 
211
 
212
 
212
 
213
void strcpyb(dword searchin, copyin, startstr, endstr)
213
void strcpyb(dword search_in, copyin, startstr, endstr)
214
{
214
{
215
	dword startp, endp;
215
	dword startp, endp;
216
	startp = strstr(searchin, startstr) + strlen(startstr);
216
	startp = strstr(search_in, startstr) + strlen(startstr);
217
	endp = strstr(startp, endstr);
217
	endp = strstri(startp, endstr);
218
	if (startp==endp) return;
218
	if (startp==endp) return;
219
	do
219
	do
220
	{ 
220
	{