Hi everyone,

Does anyone know why the old C function "strrchr" has been implemented in C++ as

Code:
const char * strrchr ( const char * str, int character );
      char * strrchr (       char * str, int character );
and not as

Code:
char * strrchr ( const char *, int );
Some old C libraries won't compile anylonger...

Thanks!