I have code that runs once daily and fputs() appends a daily log entry to a flat file in the format:
yyyy-mm-dd|log entry
This file is then displayed by a web page that fgets() and displays all records from oldest to newest.
What I need to do is change this write/read process so that:
A. Only the x most recent records are kept in the log file.
B. The output order is reversed with the most recent log entry displayed first.
If the order of the log file can be reversed with the write operation, then the read operation can remain unchanged.
If there is a better way to do this other than fputs and fgets, I am open to it.
Thanks