Lines Matching refs:strpbrk
291 check(strpbrk("abcd", "z") == NULL); /* Not found. */ in test_string()
293 check(strpbrk(one, "c") == one+2); /* Basic test. */ in test_string()
294 check(strpbrk(one, "d") == one+3); /* End of string. */ in test_string()
295 check(strpbrk(one, "a") == one); /* Beginning. */ in test_string()
296 check(strpbrk(one, "") == NULL); /* Empty search list. */ in test_string()
297 check(strpbrk(one, "cb") == one+1); /* Multiple search. */ in test_string()
299 check(strpbrk(one, "b") == one+1); /* Finding first. */ in test_string()
300 check(strpbrk(one, "cb") == one+1); /* With multiple search. */ in test_string()
301 check(strpbrk(one, "db") == one+1); /* Another variant. */ in test_string()
303 check(strpbrk(one, "bc") == NULL); /* Empty string. */ in test_string()
304 check(strpbrk(one, "") == NULL); /* Both strings empty. */ in test_string()