X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrrchr.c;h=c2369fa4589269bd02864ed7a581b85cdbbfabbc;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=527065baaab25f612d3674c5998071a6bbd16230;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/string/strrchr.c b/functions/string/strrchr.c index 527065b..c2369fa 100644 --- a/functions/string/strrchr.c +++ b/functions/string/strrchr.c @@ -1,6 +1,4 @@ -/* $Id$ */ - -/* 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. @@ -27,7 +25,8 @@ char * strrchr( const char * s, int c ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -38,4 +37,5 @@ int main( void ) TESTCASE( strrchr( abccd, 'c' ) == &abccd[3] ); return TEST_RESULTS; } + #endif