Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
145 halyavin 1
char* strpbrk(const char* string, const char* strCharSet)
2
{
6412 siemargl 3
	const char* temp;
145 halyavin 4
	while (*string!='\0')
5
	{
6
		temp=strCharSet;
7
		while (*temp!='\0')
8
		{
9
			if (*string==*temp)
6412 siemargl 10
				return (char*)string;
145 halyavin 11
			temp++;
12
		}
13
		string++;
14
	}
15
	return (char*)0;
16
}