strpbrk
p = strpbrk(cp, FMTSEP);
if (*cp == 't' && *s != '-' && strpbrk(s, ARGOPTS) == NULL)
p = strpbrk(*name, "/[");
if (!(cp = strpbrk(p, "#\n")))
if (!(cp = strpbrk(p, " \t")))
if ((cp = strpbrk(name = cp, " \t")) != NULL)
if ((cp = strpbrk(cp, " \t")) != NULL)
while ((s = strpbrk(envp, "=,")) != NULL) {
char *strpbrk(const char *, const char *);
if ((cp = strpbrk(p, "#\n")) == NULL)
if ((cp = strpbrk(p, " \t")) == NULL)
if ((cp = strpbrk(cp, " \t")) != NULL)
if ((cp = strpbrk(cp, " \t")) != NULL)
if ((cp = strpbrk(p, "#\n")) == NULL)
if ((cp = strpbrk(p, " \t")) == NULL)
if ((p = strpbrk(cp, " \t")) != NULL)
if ((cp = strpbrk(cp, " \t")) != NULL)
if (!strpbrk(lp, " \t")) {
if ((dot = strpbrk(gname, "./")) == NULL)
if (!(cp = strpbrk(p, "#\n")))
if (!(cp = strpbrk(p, " \t")))
if ((cp = strpbrk(cp, " \t")) != NULL)
cp = strpbrk(p, " \t");
if ((cp = strpbrk(cp, " \t")) != NULL)
cp = strpbrk(p, " \t");
cp = strpbrk(p, " \t\n");
cp = strpbrk(cp, " \t");
if (!(cp = strpbrk(p, " \t")))
if ((cp = strpbrk(name = cp, " \t")) != NULL)
if ((cp = strpbrk(cp, " \t")) != NULL)
cp = strpbrk(p, "#\n");
cp = strpbrk(p, " \t");
p = strpbrk(cp, " \t");
cp = strpbrk(cp, " \t");
cp = strpbrk(line, " \t");
p = strpbrk(cp, " \t");
cp = strpbrk(cp, " \t");
cp = strpbrk(p, " \t");
p = strpbrk(cp, " \t");
cp = strpbrk(cp, " \t");
p = strpbrk(p, " \t");
cp = strpbrk(p, ",/");
cp = strpbrk(cp, " \t");
cp = strpbrk(cp, " \t");
if ((cp = strpbrk(statp->defdname, " \t\n")) != NULL)
if ((tmpp = strpbrk(stringp, "\t ")) == NULL) {
cp = strpbrk(p, "#\n");
cp = strpbrk(p, " \t");
cp = strpbrk(cp, " \t");
cp = strpbrk(cp, " \t");
const char *sep = strpbrk(templ, "= ");
if ((cp = strpbrk(cmdp, " \n")))
if ((cp2 = strpbrk(cp, " \n")))
if (strpbrk(whichf, "~{[*?") != NULL) {
if ((p = strpbrk(username, "\r\n")) != NULL)
if ((cp = strpbrk(line, "#\r\n")) != NULL)
if (strpbrk(argv[0], ":@") != NULL) {
if (strpbrk(p->p_key, RE_CHARS)) {
t = strpbrk(s, ",");
if ((t = strpbrk(nname, "./")) == NULL)
if ((dot = strpbrk(key, "./")) == NULL)
p = strpbrk(URL, "/@");
char *strpbrk(const char *, const char *);
ATF_TC(strpbrk);
ATF_TC_HEAD(strpbrk, tc)
ATF_TC_BODY(strpbrk, tc)
ATF_CHECK_EQ(strpbrk(s, ""), NULL);
ATF_CHECK_EQ(strpbrk(s, "qrst"), NULL);
ATF_CHECK_EQ(strpbrk(s, "a"), s);
ATF_CHECK_EQ(strpbrk(s, "b"), s + 1);
ATF_CHECK_EQ(strpbrk(s, "ab"), s);
ATF_CHECK_EQ(strpbrk(s, "cdef"), s + 2);
ATF_CHECK_EQ(strpbrk(s, "fedc"), s + 2);
ATF_TP_ADD_TC(tp, strpbrk);
char *strpbrk(const char *, const char *); /* C99 7.21.5.4 */
take_char_ptr(strpbrk("string", "c"));
if (ep->except && strpbrk(p, ep->except)) {
if (isxargs && strpbrk(g_entry->fts_path, BADCH)) {
if (! EMPTYSTRING(dir) && strpbrk(dir, "*?[]{}") != NULL)
if (! EMPTYSTRING(file) && strpbrk(file, "*?[]{}") != NULL)
if (strpbrk(name, "~{[*?$`'\"\\") == NULL)
return strpbrk(str, " \t") != NULL;
p = strpbrk(str, " \t");
if ((p = strpbrk(s->str + 2, "*]")) == NULL)
arg = strpbrk(arg, "><@=!:");
end = strpbrk(cp, "<>");
tp = strpbrk(*cpp, " \t\n#");
if (strpbrk(p, MAGIC))
if (strpbrk(s, ";|&<>`'#!?*()[]^/${}\n\r\"\\:") != NULL)
if ((epos = strpbrk(spos, " \t"))) {