2 * Copyright (C) 2002 Manuel Novoa III
5 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
11 # define Wstrpbrk wcspbrk
13 # define Wstrpbrk strpbrk
16 Wchar *Wstrpbrk(const Wchar *s1, const Wchar *s2)
18 register const Wchar *s;
19 register const Wchar *p;
21 for ( s=s1 ; *s ; s++ ) {
22 for ( p=s2 ; *p ; p++ ) {
23 if (*p == *s) return (Wchar *) s; /* silence the warning */
28 libc_hidden_def(Wstrpbrk)