I've got an array of char*'s in a file. The co. I work for stores data in flat files.. Sometimes the data is sorted, but sometimes it's not. I'd like to sort the data in the files.
Now I could write the code to do this, from scratch. Is there an easier way?
Of course an inplace sort would be the best option. But I'll consider all options.
EDIT: All char* (strings) are the same length.
EDIT2:
This is some sample data
"the data is of fixed length\r\nthe Data is of fixed length\r\nthIS data is of fixed lengt\r\n"
This would represent three records of length 28... The app knows the length and though records do end in \r\n it shouldn't matter for this sort.
