Home | History | Annotate | Download | only in lib

Lines Matching refs:strpbrk

253 extern char *strpbrk (char const *__s, char const *__accept)
257 /* strpbrk() assumes the second argument is a list of single-byte characters.
261 # undef strpbrk
262 # define strpbrk(s,a) \
263 (GL_LINK_WARNING ("strpbrk cannot work correctly on character strings " \
266 strpbrk (s, a))
269 # undef strpbrk
270 # define strpbrk(s,a) \
271 (GL_LINK_WARNING ("strpbrk is unportable - " \
272 "use gnulib module strpbrk for portability"), \
273 strpbrk (s, a))
522 Unlike strpbrk(), this function works correctly in multibyte locales. */