I am reading a C book and their is a function that looks like:
reverse( const char * const sPtr );
Is this function accepting both a character and then a pointer?
I don't understand the * const sPtr.
It almost looks like it's trying to multiply it.
 
    