Tagged Questions
4
votes
6answers
896 views
How is fseek() implemented in the filesystem?
This is not a pure programming question, however it impacts the performance of programs using fseek(), hence it is important to know how it works. A little disclaimer so that it doesn't get closed.
I ...
3
votes
5answers
974 views
fseek / rewind in a loop
I have a situation in a code where there is a huge function that parses records line-by-line, validates and writes to another file.
In case there are errors in the file, it calls another function ...
1
vote
8answers
1k views
C malloc/free + fgets performance
As I loop through lines in file A, I am parsing the line and putting each string (char*) into a char**.
At the end of a line, I then run a procedure that consists of opening file B, using fgets, ...