Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

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