X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrrchr.c;h=c2369fa4589269bd02864ed7a581b85cdbbfabbc;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=89c4ebf25e4aaacd879b1180aa94ce8de8f2db8c;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/string/strrchr.c b/functions/string/strrchr.c index 89c4ebf..c2369fa 100644 --- a/functions/string/strrchr.c +++ b/functions/string/strrchr.c @@ -1,8 +1,4 @@ -/* $Id$ */ - -/* Release $Name$ */ - -/* strrchr( const char *, int c ) +/* strrchr( const char *, int ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -29,7 +25,8 @@ char * strrchr( const char * s, int c ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -40,4 +37,5 @@ int main( void ) TESTCASE( strrchr( abccd, 'c' ) == &abccd[3] ); return TEST_RESULTS; } + #endif