Browse Source
1)open CRLF ending file in text mode 2) fseek(f, 0, SEEK_END); long pos = ftell(f); // return the file total byte fseek(f, 0, SEEK_SET); 3) int nread = fread(buf, pos, 1, f); // always return 0 to nread int nread = fread(buf, 1, pos, f); // return readed byte with CRLF converted to LF. it means pos - nread = CRLF's count.pull/116/head
Jesse
10 years ago