In the standard C library, we can treat a file as binary or text, by fopen()
with or without b
type argument.
In Linux/POSIX API, can we treat a file as binary or text, by some way? Does open()
not provide similar type argument?
In the standard C library, we can treat a file as binary or text, by fopen()
with or without b
type argument.
In Linux/POSIX API, can we treat a file as binary or text, by some way? Does open()
not provide similar type argument?