Will the gets()
function from C language (e.g. from glibc) stop, if it reads a zero byte ('\0'
) from the file ?
Quick test: echo -ne 'AB\0CDE'
Thanks.
PS this question arises from comments in this question: return to libc - problem
PPS the gets
function is dangerous, but it is a question about this function itself, not about should anybody use it or not.
The behavior of
gets()
is that it stops when a newline character is encountered or if EOF is encountered. It does not care if it reads\0
bytes.C99 Standard, 7.19.7.7
From GNU libc documentation: http://www.gnu.org/software/libc/manual/html_node/Line-Input.html#Line-Input