I\'m reading source code of the linux tool badblocks. They use the read() function there. Is there a difference to the standard C fread() function?
read()
fread()
read is a syscall, whereas fread is a function in the C standard library.
read
fread