Update the discussion of themeing in the manual, and put a note in the wps tags appen...
[kugel-rb.git] / apps / plugins / lua / strpbrk.c
blobf416f391aeccde74f647b616155a9bf68b5197a6
1 #include "rocklibc.h"
3 char *strpbrk(const char *s, const char *accept) {
4 register int i,l=strlen(accept);
5 for (; *s; s++)
6 for (i=0; i<l; i++)
7 if (*s == accept[i])
8 return (char*)s;
9 return 0;