I'm trying to detect whether or not the last byte in a file is control-z (the MS-DOS originating end of file byte - 0x1A), but I'm not having any success. I'm using
fseek(filePointer,-1,SEEK_END);
to isolate the last byte and then I'm using
fread(buffer, sizeof(buffer[0]), sizeof(custom_char), filePointer);
to try to read the last byte in.
I'm basically getting garbage when I try to read that byte, and I'm wondering if maybe fread ignores the 0x1A byte by default or if there's any other quirky behavior that people have run across in the past while doing this.
The current logic, which is malfunctioning, is trying to read the last byte and considering the end of file marker found if fread returns 0 (fread should return the number of elements read, right?):
if(fread(buffer, sizeof(buffer[0]), sizeof(custom_char), filePointer) == 0)
{
// strip off the last byte
}
edit: I should add that the problem that I'm having comes up after fopen is called, the BOM is written, and the 3rd byte of the BOM is mistakenly thought to be the 0xA1 end of file marker and stripped off.
fopen, do you specifyb(binary) as part of themodeparameter? – ChrisW Nov 19 '12 at 19:41