forked from KolibriOS/kolibrios
ace23ebbe2
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
288 B
C
19 lines
288 B
C
#include <string.h>
|
|
|
|
char* strpbrk(const char* string, const char* strCharSet)
|
|
{
|
|
const char* temp;
|
|
while (*string!='\0')
|
|
{
|
|
temp=strCharSet;
|
|
while (*temp!='\0')
|
|
{
|
|
if (*string==*temp)
|
|
return (char*)string;
|
|
temp++;
|
|
}
|
|
string++;
|
|
}
|
|
return (char*)0;
|
|
}
|