Lines Matching full:strchrnul
475 it = "strchrnul";
476 cp = strchrnul ((os = "abcd"), 'z');
480 check (strchrnul (one, 'c') == one+2, 3); /* Basic test. */
481 check (strchrnul (one, 'd') == one+3, 4); /* End of string. */
482 check (strchrnul (one, 'a') == one, 5); /* Beginning. */
483 check (strchrnul (one, '\0') == one+4, 6); /* Finding NUL. */
485 check (strchrnul (one, 'b') == one+1, 7); /* Finding first. */
487 check (strchrnul (one, 'b') == one, 8); /* Empty string. */
488 check (strchrnul (one, '\0') == one, 9); /* NUL in empty string. */
498 cp = strchrnul (p, '/');
1441 /* strchrnul. */