I'm trying to read a file, and test to see if it is "mirrored". My program always displays the file as mirrored. I think most of my problem is in the initial function.
isMirrored is a function pointer, since isMirrored is the name of a function that actually exists that pointer is not 0, so it's true, so you'll always get the "is mirrored" output.
But really, it would be much more straightforward if you'd implement isMirrored with a loop instead of with recursion (and it would make it much less prone to overflowing the stack).
In your recursive function, you don't have a condition where isMirrored will return true. You will either return false or call another instance of isMirrored which will inevitably return false eventually. Therefore isMirrored(string) will always be false, it's just a matter of time.