File random read write

SDL_RWops * SDL_RWFromFile(const char *file, const char *mode)

I need read file at any position.
But the SDL function only have the method to read from begin and one by one to the end.

SDL_RWseek() positions the pointer wherever you want.

Yes, I do with this. It works.