X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstring%2Fstrrchr.c;h=2a41874b64833dd9953b0ee2213f728b1ecf7a4e;hp=4f1e2b5cb58fbd230de5b04776d5050f62cc14f0;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b diff --git a/functions/string/strrchr.c b/functions/string/strrchr.c index 4f1e2b5..2a41874 100644 --- a/functions/string/strrchr.c +++ b/functions/string/strrchr.c @@ -1,26 +1,39 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ +/* strrchr( const char *, int c ) -#include <__NULL.h> + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ -char * strrchr( const char * src, int c ) +#include + +#ifndef REGTEST + +char * strrchr( const char * s, int c ) { - const char * p = src; - while ( *p != '\0' ) + size_t i = 0; + while ( s[i++] ); + do { - ++p; - } - while ( p >= src ) - { - if ( *p == (char) c ) + if ( s[--i] == (char) c ) { - return (char *) p; + return (char *) s + i; } - --p; - } + } while ( i ); return NULL; } + +#endif + +#ifdef TEST +#include "_PDCLIB_test.h" + +int main( void ) +{ + char abccd[] = "abccd"; + TESTCASE( strrchr( abcde, '\0' ) == &abcde[5] ); + TESTCASE( strrchr( abcde, 'e' ) == &abcde[4] ); + TESTCASE( strrchr( abcde, 'a' ) == &abcde[0] ); + TESTCASE( strrchr( abccd, 'c' ) == &abccd[3] ); + return TEST_RESULTS; +} +#endif