I have a program that reads data from stdin
. This data is a sequence of bytes. If there is a byte describing a new line in it (in hex: 0x0A), scanf
stops reading.
Can I mask this byte, so that scanf
continues to read the whole sequence?
It is important that the memory, that is written by scanf
contains the newline-byte.