Lines Matching full:rindex
634 it = "rindex";
635 check (rindex ("abcd", 'z') == NULL, 1); /* Not found. */
637 check (rindex (one, 'c') == one+2, 2); /* Basic test. */
638 check (rindex (one, 'd') == one+3, 3); /* End of string. */
639 check (rindex (one, 'a') == one, 4); /* Beginning. */
640 check (rindex (one, '\0') == one+4, 5); /* Finding NUL. */
642 check (rindex (one, 'b') == one+3, 6); /* Finding last. */
644 check (rindex (one, 'b') == NULL, 7); /* Empty string. */
645 check (rindex (one, '\0') == one, 8); /* NUL in empty string. */
1434 /* rindex - just like strrchr. */