is there any difference between using fseeko
with fread
vs lseek
with read
if I want to do Hard disk access ?
My program checks for certain patterns on a raw harddisk (/dev/sdX
). My program currently uses fseeko
and fread
.
Platform is linux.