I have a highscore file where name and score are stored. Each entry is divided by ; and between name and score is an - Here is an example:
15-Player One;10-Player Two;20-Player Three;10-Player Four;8-Player Five
I am now reading the content of the file into a char * buffer
My goal is now to separate each entry from another [kinda like buffer.Split(';') for C#] and print the list in an ascending order.
Any pro tips on how to do it the easiest way? I am currently having a blackout...